tiny-vue_version0/examples/sites/demos/pc/app/modal/title-composition-api.vue

12 lines
285 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: '自定义标题', title: '自定义标题' })
}
</script>