ant-design-vue/site/debugger/demo/demo.vue

58 lines
1.0 KiB
Vue

<docs>
---
order: 0
title:
zh-CN: 基本用法
en-US: Basic usage
---
## zh-CN
第一个对话框
## en-US
Basic modal.
</docs>
<template>
<div>
<div ref="container"></div>
<a-button type="primary" @click="showModal">Open Modal</a-button>
<a-modal v-model:visible="visible" title="Basic Modal" @ok="handleOk">
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</a-modal>
</div>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
const visible = ref<boolean>(false);
const showModal = () => {
visible.value = true;
};
const handleOk = (e: MouseEvent) => {
console.log(e);
visible.value = false;
};
const container = ref();
return {
container,
visible,
showModal,
handleOk,
getContainer() {
console.log('container', container.value);
return container.value;
},
};
},
});
</script>