Update layout.vue

This commit is contained in:
邹景立 2021-11-26 22:05:33 +08:00
parent 49ba522dce
commit db2762ffd7

View File

@ -20,25 +20,9 @@
<el-container> <el-container>
<el-aside width="280px"> <el-aside width="280px">
<el-tabs tab-position="left" style="height:100%"> <el-tabs tab-position="left" style="height:100%">
<el-tab-pane> <el-tab-pane v-for="menu in menus">
<template #label>ONE</template> <template #label>{{ menu.name }}</template>
<h3>ONE - MENU</h3> <h3 v-text="menu.title"></h3>
</el-tab-pane>
<el-tab-pane>
<template #label>TWO</template>
<h3>TWO - MENU</h3>
</el-tab-pane>
<el-tab-pane>
<template #label>THR</template>
<h3>THR - MENU</h3>
</el-tab-pane>
<el-tab-pane>
<template #label>FUR</template>
<h3>FUR - MENU</h3>
</el-tab-pane>
<el-tab-pane>
<template #label>FIV</template>
<h3>FIV - MENU</h3>
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</el-aside> </el-aside>
@ -54,9 +38,9 @@
<style lang="less"> <style lang="less">
html, body { html, body {
margin: 0;
height: 100%; height: 100%;
display: block; display: block;
margin: 0;
padding: 0; padding: 0;
} }
@ -70,13 +54,11 @@ body > .el-container {
} }
> .el-container { > .el-container {
> .el-aside { > .el-aside {
background: #53a8ff; background: #53a8ff;
} }
> .el-container { > .el-container {
> .el-main { > .el-main {
background: #efefef; background: #efefef;
} }
@ -86,7 +68,6 @@ body > .el-container {
background: #333; background: #333;
line-height: 60px; line-height: 60px;
} }
} }
} }
} }
@ -173,7 +154,12 @@ export default {
components: {}, components: {},
data() { data() {
return { return {
menus: [] menus: [
{name: 'ONE', title: 'SHOW-ONE-LIST', subs: []},
{name: 'TWO', title: 'SHOW-TWO-LIST', subs: []},
{name: 'THR', title: 'SHOW-THR-LIST', subs: []},
{name: 'FOR', title: 'SHOW-FOR-LIST', subs: []},
]
} }
}, },
created() { created() {