|
@@ -2,58 +2,7 @@
|
|
|
<a-layout class="a-layout" >
|
|
<a-layout class="a-layout" >
|
|
|
<Navbar />
|
|
<Navbar />
|
|
|
<a-layout>
|
|
<a-layout>
|
|
|
- <a-layout-sider
|
|
|
|
|
- width="200"
|
|
|
|
|
- style="background: #fff"
|
|
|
|
|
- breakpoint="lg"
|
|
|
|
|
- collapsed-width="0"
|
|
|
|
|
- @collapse="onCollapse"
|
|
|
|
|
- @breakpoint="onBreakpoint"
|
|
|
|
|
- >
|
|
|
|
|
- <a-menu
|
|
|
|
|
- v-model:selectedKeys="selectedKeys2"
|
|
|
|
|
- v-model:openKeys="openKeys"
|
|
|
|
|
- mode="inline"
|
|
|
|
|
- :style="{ height: '100%', borderRight: 0 }"
|
|
|
|
|
- >
|
|
|
|
|
- <a-sub-menu key="sub1">
|
|
|
|
|
- <template #title>
|
|
|
|
|
- <span>
|
|
|
|
|
- <user-outlined />
|
|
|
|
|
- subnav 1
|
|
|
|
|
- </span>
|
|
|
|
|
- </template>
|
|
|
|
|
- <a-menu-item key="1">option1</a-menu-item>
|
|
|
|
|
- <a-menu-item key="2">option2</a-menu-item>
|
|
|
|
|
- <a-menu-item key="3">option3</a-menu-item>
|
|
|
|
|
- <a-menu-item key="4">option4</a-menu-item>
|
|
|
|
|
- </a-sub-menu>
|
|
|
|
|
- <a-sub-menu key="sub2">
|
|
|
|
|
- <template #title>
|
|
|
|
|
- <span>
|
|
|
|
|
- <laptop-outlined />
|
|
|
|
|
- subnav 2
|
|
|
|
|
- </span>
|
|
|
|
|
- </template>
|
|
|
|
|
- <a-menu-item key="5">option5</a-menu-item>
|
|
|
|
|
- <a-menu-item key="6">option6</a-menu-item>
|
|
|
|
|
- <a-menu-item key="7">option7</a-menu-item>
|
|
|
|
|
- <a-menu-item key="8">option8</a-menu-item>
|
|
|
|
|
- </a-sub-menu>
|
|
|
|
|
- <a-sub-menu key="sub3">
|
|
|
|
|
- <template #title>
|
|
|
|
|
- <span>
|
|
|
|
|
- <notification-outlined />
|
|
|
|
|
- subnav 3
|
|
|
|
|
- </span>
|
|
|
|
|
- </template>
|
|
|
|
|
- <a-menu-item key="9">option9</a-menu-item>
|
|
|
|
|
- <a-menu-item key="10">option10</a-menu-item>
|
|
|
|
|
- <a-menu-item key="11">option11</a-menu-item>
|
|
|
|
|
- <a-menu-item key="12">option12</a-menu-item>
|
|
|
|
|
- </a-sub-menu>
|
|
|
|
|
- </a-menu>
|
|
|
|
|
- </a-layout-sider>
|
|
|
|
|
|
|
+ <Sider />
|
|
|
<a-layout style="padding: 0 24px 24px">
|
|
<a-layout style="padding: 0 24px 24px">
|
|
|
<a-breadcrumb style="margin: 16px 0">
|
|
<a-breadcrumb style="margin: 16px 0">
|
|
|
<a-breadcrumb-item>Home</a-breadcrumb-item>
|
|
<a-breadcrumb-item>Home</a-breadcrumb-item>
|
|
@@ -75,7 +24,7 @@ import { UserOutlined, LaptopOutlined, NotificationOutlined } from '@ant-design/
|
|
|
import { defineComponent, ref } from 'vue'
|
|
import { defineComponent, ref } from 'vue'
|
|
|
import router from '@/router/index'
|
|
import router from '@/router/index'
|
|
|
import Navbar from './navbar.vue'
|
|
import Navbar from './navbar.vue'
|
|
|
-
|
|
|
|
|
|
|
+import Sider from './sider.vue'
|
|
|
const onCollapse = () => {}
|
|
const onCollapse = () => {}
|
|
|
const onBreakpoint = () => {}
|
|
const onBreakpoint = () => {}
|
|
|
|
|
|