forked from opentiny/tiny-vue
23 lines
406 B
Vue
23 lines
406 B
Vue
<template>
|
|
<tiny-button @click="btnClick" :reset-time="0">不锁界面不要遮罩层</tiny-button>
|
|
</template>
|
|
|
|
<script>
|
|
import { Button, Modal } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyButton: Button
|
|
},
|
|
methods: {
|
|
btnClick() {
|
|
Modal.alert({
|
|
message: '不锁界面不要遮罩层',
|
|
lockView: false,
|
|
mask: false
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|