forked from opentiny/tiny-vue
32 lines
638 B
Vue
32 lines
638 B
Vue
<template>
|
|
<div class="content">
|
|
<tiny-button @click="value1 = !value1" :reset-time="0"> 在窗口显示时触发事件 </tiny-button>
|
|
<tiny-modal v-model="value1" type="confirm" show-footer @show="showClick">
|
|
<template #default>
|
|
<p>test</p>
|
|
</template>
|
|
</tiny-modal>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Button, Modal } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyButton: Button,
|
|
TinyModal: Modal
|
|
},
|
|
data() {
|
|
return {
|
|
value1: false
|
|
}
|
|
},
|
|
methods: {
|
|
showClick() {
|
|
Modal.message({ message: '在窗口显示时触发事件' })
|
|
}
|
|
}
|
|
}
|
|
</script>
|