tiny-vue/examples/sites/demos/mobile-first/app/modal/lock-scroll.vue

23 lines
422 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: '不锁住滚动条不要遮罩层',
lockScroll: false,
mask: false
})
}
}
}
</script>