Files
LaiTool/src/renderer/src/components/ReverseManage/ManageBookTask.vue
T

22 lines
351 B
Vue
Raw Normal View History

2024-06-24 13:11:19 +08:00
<template>
<div>按钮</div>
</template>
<script>
import { ref, onMounted, defineComponent, onUnmounted, toRaw, watch } from 'vue'
import { useMessage, NButton, NDataTable } from 'naive-ui'
export default defineComponent({
components: {
NButton,
NDataTable
},
setup() {
onMounted(async () => {})
return {}
}
})
</script>