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
399 B
21 lines
399 B
7 months ago
|
<template>
|
||
|
<div class="container">
|
||
|
<el-menu mode="horizontal" style="width: 5%;height: 100vh;">
|
||
|
<el-menu-item>123</el-menu-item>
|
||
|
<el-menu-item>123</el-menu-item>
|
||
|
<el-menu-item>123</el-menu-item>
|
||
|
<el-menu-item>123</el-menu-item>
|
||
|
</el-menu>
|
||
|
<el-main>
|
||
|
<slot />
|
||
|
</el-main>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "Container",
|
||
|
|
||
|
}
|
||
|
</script>
|