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