forked from opentiny/tiny-vue
24 lines
452 B
Vue
24 lines
452 B
Vue
<template>
|
|
<tiny-button @click="btnClick" :reset-time="0">提示框最小高度为300</tiny-button>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { Button, Modal } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyButton: Button
|
|
},
|
|
methods: {
|
|
btnClick() {
|
|
Modal.alert({
|
|
message: '提示框拖动最小高度为300',
|
|
resize: true,
|
|
minHeight: 300,
|
|
tiny_mode: 'mobile'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|