You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
834 B
51 lines
834 B
<docs>
|
|
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本用法
|
|
en-US: Basic usage
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
第一个对话框。
|
|
|
|
## en-US
|
|
|
|
Basic modal.
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<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;
|
|
};
|
|
return {
|
|
visible,
|
|
showModal,
|
|
handleOk,
|
|
};
|
|
},
|
|
});
|
|
</script>
|