forked from opentiny/tiny-vue
26 lines
464 B
Vue
26 lines
464 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: '提示框拖动最小宽度为700',
|
|
resize: true,
|
|
width: 800,
|
|
height: 400,
|
|
minWidth: 700,
|
|
minHeight: 300
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|