DIIA
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
350 B

<template>
<!-- 路由出口 -->
<router-layout />
</template>
<script lang="ts" setup>
import RouterLayout from '@/components/RouterLayout/index.vue';
</script>
<script lang="ts">
import * as MenuIcons from './menu-icons';
export default {
name: 'Layout',
components: MenuIcons
};
</script>
<style lang="less">
</style>