fix(sidebar): 侧边栏添加 News,暂且就这些吧

This commit is contained in:
BTMuli
2023-03-05 17:38:56 +08:00
parent 2383dc7d51
commit 1306c6fd4e
5 changed files with 43 additions and 19 deletions

24
components.d.ts vendored
View File

@@ -5,17 +5,17 @@
// Read more: https://github.com/vuejs/core/pull/3399
import '@vue/runtime-core'
export {}
export {};
declare module '@vue/runtime-core' {
export interface GlobalComponents {
ALayout: typeof import('ant-design-vue/es')['Layout']
ALayoutContent: typeof import('ant-design-vue/es')['LayoutContent']
ALayoutSider: typeof import('ant-design-vue/es')['LayoutSider']
AMenu: typeof import('ant-design-vue/es')['Menu']
AMenuItem: typeof import('ant-design-vue/es')['MenuItem']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
TSidebar: typeof import('./src/components/t-sidebar.vue')['default']
}
declare module "@vue/runtime-core" {
export interface GlobalComponents {
ALayout: typeof import("ant-design-vue/es")["Layout"];
ALayoutContent: typeof import("ant-design-vue/es")["LayoutContent"];
ALayoutSider: typeof import("ant-design-vue/es")["LayoutSider"];
AMenu: typeof import("ant-design-vue/es")["Menu"];
AMenuItem: typeof import("ant-design-vue/es")["MenuItem"];
RouterLink: typeof import("vue-router")["RouterLink"];
RouterView: typeof import("vue-router")["RouterView"];
TSidebar: typeof import("./src/components/t-sidebar.vue")["default"];
}
}

View File

@@ -3,7 +3,7 @@
<!-- 侧边栏 -->
<t-sidebar />
<!-- 内容区 -->
<a-layout-content class="container">
<a-layout-content>
<!-- 路由组件 -->
<router-view></router-view>
</a-layout-content>
@@ -22,4 +22,4 @@ export default defineComponent({
});
</script>
<style></style>
<style lang="css"></style>

View File

@@ -8,11 +8,15 @@
>
<a-menu-item key="home">
<HomeOutlined />
<span>Home</span>
<span>首页</span>
</a-menu-item>
<a-menu-item key="news">
<ScheduleOutlined />
<span>咨讯</span>
</a-menu-item>
<a-menu-item key="config">
<SettingOutlined />
<span>Config</span>
<span>设置</span>
</a-menu-item>
</a-menu>
</a-layout-sider>
@@ -20,13 +24,14 @@
<script lang="ts">
import { defineComponent } from "vue";
import { HomeOutlined, SettingOutlined } from "@ant-design/icons-vue";
import { HomeOutlined, ScheduleOutlined, SettingOutlined } from "@ant-design/icons-vue";
import { useRouter } from "vue-router";
export default defineComponent({
name: "TSidebar",
components: {
HomeOutlined,
ScheduleOutlined,
SettingOutlined,
},
data() {

13
src/pages/News.vue Normal file
View File

@@ -0,0 +1,13 @@
<template>
<h1>咨讯</h1>
</template>
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
name: "News",
});
</script>
<style lang="css"></style>

View File

@@ -1,19 +1,25 @@
import Home from "../pages/Home.vue";
import News from "../pages/News.vue";
import Config from "../pages/Config.vue";
const routes = [
{
path: "/",
name: "Home",
name: "首页",
component: Home,
},
{
path: "/home",
redirect: "/",
},
{
path: "/news",
name: "咨讯",
component: News,
},
{
path: "/config",
name: "Config",
name: "设置",
component: Config,
},
];