forked from opentiny/tiny-vue
17 lines
346 B
Vue
17 lines
346 B
Vue
<template>
|
|
<tiny-button @click="btnClick" :reset-time="0">可以拖动调整窗口大小</tiny-button>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Button as TinyButton, Modal } from '@opentiny/vue'
|
|
|
|
function btnClick() {
|
|
Modal.alert({
|
|
message: '可以拖动调整窗口大小',
|
|
resize: true,
|
|
height: 188,
|
|
width: 366
|
|
})
|
|
}
|
|
</script>
|