pc_vue_admin/src/views/basicData/unit/detail/index.vue

30 lines
509 B
Vue
Raw Normal View History

2024-07-24 02:48:33 +00:00
<template>
<div></div>
</template>
<script setup>
// const props = defineProps({})
// const emit = defineEmits()
// 生命周期钩子
onMounted(() => {
console.log('Component mounted')
// TODO: Add your onMounted code here
})
onUpdated(() => {
console.log('Component updated')
// TODO: Add your onUpdated code here
})
onUnmounted(() => {
console.log('Component unmounted')
// TODO: Add your onUnmounted code here
})
// watch(() => {}, () => {})
</script>
<style scoped></style>