forked from opentiny/tiny-vue
19 lines
378 B
Vue
19 lines
378 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: '自定义提示框的内容', tiny_mode: 'mobile' })
|
|
}
|
|
}
|
|
}
|
|
</script>
|