tiny-vue/examples/sites/demos/pc/app/modal/mask-closable-composition-a...

12 lines
303 B
Vue

<template>
<tiny-button @click="btnClick" :reset-time="0">点击遮罩层可以关闭</tiny-button>
</template>
<script setup>
import { Button as TinyButton, Modal } from '@opentiny/vue'
function btnClick() {
Modal.alert({ message: '点击遮罩层可以关闭', maskClosable: true })
}
</script>