<template>
</template>
<script setup>
import {inject,onMounted, onUnmounted,onBeforeMount,onBeforeUpdate,onUpdated,onDeactivated, watch} from 'vue'
const emit = defineEmits(['close'])
const props = inject('attributes') //父级provide('attributes', "")
const state = reactive({
name: null
})
watch(
() => [state.name],
(newValue) => {
}
);
onBeforeMount(()=>{
})
onMounted(()=>{
})
onBeforeUpdate(()=>{
})
onUpdated(()=>{
})
onDeactivated(()=>{
})
onUnmounted(()=>{
})
</script>