mirror of
https://github.com/fugary/simple-element-plus-template.git
synced 2025-12-10 04:47:50 +00:00
基础element-plus模板项目
This commit is contained in:
20
src/views/HomeView.vue
Normal file
20
src/views/HomeView.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<script setup>
|
||||
import LeftMenu from "@/components/LeftMenu.vue";
|
||||
import TopNav from "@/components/TopNav.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<el-container class="index-container">
|
||||
<el-header>
|
||||
<top-nav/>
|
||||
</el-header>
|
||||
<el-container>
|
||||
<el-aside>
|
||||
<left-menu/>
|
||||
</el-aside>
|
||||
<el-main>
|
||||
<router-view/>
|
||||
</el-main>
|
||||
</el-container>
|
||||
</el-container>
|
||||
</template>
|
||||
Reference in New Issue
Block a user