forked from opentiny/tiny-vue
24 lines
460 B
Vue
24 lines
460 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: '不锁住滚动条不要遮罩层',
|
|
lockScroll: false,
|
|
mask: false,
|
|
tiny_mode: 'mobile'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|