23 lines
384 B
Vue
Raw Normal View History

2023-01-05 13:18:28 +08:00
<!--
* @Author: Kane
* @Date: 2023-01-04 11:40:03
* @LastEditors: Kane
2023-01-06 18:08:18 +08:00
* @LastEditTime: 2023-01-06 12:54:17
2023-01-05 13:18:28 +08:00
* @FilePath: \admin_system\src\layout\components\Main.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
2023-01-06 18:08:18 +08:00
<router-view />
2023-01-05 13:18:28 +08:00
</template>
<script>
export default {
name: "LayoutMain"
};
</script>
<style scoped>
</style>