iot-ui-vue/src/views/device/Instance/Import/index.vue

14 lines
268 B
Vue

<template>
<a-modal :maskClosable="false" width="800px" :visible="true" title="导入" @ok="handleOk" @cancel="handleCancel">
123
</a-modal>
</template>
<script lang="ts" setup>
const handleOk = () => {
}
const handleCancel = () => {
}
</script>