添加appMenu组件基础结构
This commit is contained in:
parent
2a87e9bdae
commit
2f4b21493d
18
src/views/system/appMenu/index.vue
Normal file
18
src/views/system/appMenu/index.vue
Normal 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>
|
Loading…
Reference in New Issue
Block a user