tiny-vue/examples/sites/demos/mobile/app/modal/title.vue

19 lines
380 B
Vue

<template>
<tiny-button @click="btnClick" :reset-time="0">自定义标题</tiny-button>
</template>
<script lang="jsx">
import { Button, Modal } from '@opentiny/vue'
export default {
components: {
TinyButton: Button
},
methods: {
btnClick() {
Modal.alert({ message: '自定义标题', title: '自定义标题', tiny_mode: 'mobile' })
}
}
}
</script>