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.
ant-design-vue/components/modal/demo/width.vue

51 lines
941 B

<docs>
---
order: 10
title:
zh-CN: 自定义模态的宽度
en-US: To customize the width of modal
---
## zh-CN
使用`width`来设置模态对话框的宽度
## en-US
Use `width` to set the width of the modal dialog
</docs>
<template>
<div>
<a-button type="primary" @click="showModal">Open Modal of 1000px width</a-button>
<a-modal v-model:open="open" width="1000px" 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 open = ref<boolean>(false);
const showModal = () => {
open.value = true;
};
const handleOk = (e: MouseEvent) => {
console.log(e);
open.value = false;
};
return {
open,
showModal,
handleOk,
};
},
});
</script>