添加appMenu组件基础结构

This commit is contained in:
钊钊 2024-12-19 14:32:33 +08:00
parent 2a87e9bdae
commit 2f4b21493d

View File

@ -0,0 +1,18 @@
<template>
<div>
111
</div>
</template>
<script setup lang="ts">
import { ref, reactive, onMounted, nextTick } from 'vue';
//
const props = defineProps({
});
//
const emit = defineEmits(['hideDialog']);
</script>
<style lang="scss" scoped></style>