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