22 lines
351 B
Vue
22 lines
351 B
Vue
<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>
|