mirror of https://github.com/rocboss/paopao-ce
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.
118 lines
2.1 KiB
118 lines
2.1 KiB
import { createRouter, createWebHashHistory } from "vue-router";
|
|
|
|
const routes = [
|
|
{
|
|
path: "/",
|
|
name: "home",
|
|
meta: {
|
|
title: "广场",
|
|
keepAlive: true,
|
|
},
|
|
component: () => import("@/views/Home.vue"),
|
|
},
|
|
{
|
|
path: "/post",
|
|
name: "post",
|
|
meta: {
|
|
title: "话题详情",
|
|
},
|
|
component: () => import("@/views/Post.vue"),
|
|
},
|
|
{
|
|
path: "/topic",
|
|
name: "topic",
|
|
meta: {
|
|
title: "话题",
|
|
},
|
|
component: () => import("@/views/Topic.vue"),
|
|
},
|
|
{
|
|
path: "/anouncement",
|
|
name: "anouncement",
|
|
meta: {
|
|
title: "公告",
|
|
},
|
|
component: () => import("@/views/Anouncement.vue"),
|
|
},
|
|
{
|
|
path: "/profile",
|
|
name: "profile",
|
|
meta: {
|
|
title: "主页",
|
|
},
|
|
component: () => import("@/views/Profile.vue"),
|
|
},
|
|
{
|
|
path: "/u",
|
|
name: "user",
|
|
meta: {
|
|
title: "用户详情",
|
|
},
|
|
component: () => import("@/views/User.vue"),
|
|
},
|
|
{
|
|
path: "/messages",
|
|
name: "messages",
|
|
meta: {
|
|
title: "消息",
|
|
},
|
|
component: () => import("@/views/Messages.vue"),
|
|
},
|
|
{
|
|
path: "/collection",
|
|
name: "collection",
|
|
meta: {
|
|
title: "收藏",
|
|
},
|
|
component: () => import("@/views/Collection.vue"),
|
|
},
|
|
{
|
|
path: "/contacts",
|
|
name: "contacts",
|
|
meta: {
|
|
title: "好友",
|
|
},
|
|
component: () => import("@/views/Contacts.vue"),
|
|
},
|
|
{
|
|
path: "/wallet",
|
|
name: "wallet",
|
|
meta: {
|
|
title: "钱包",
|
|
},
|
|
component: () => import("@/views/Wallet.vue"),
|
|
},
|
|
{
|
|
path: "/setting",
|
|
name: "setting",
|
|
meta: {
|
|
title: "设置",
|
|
},
|
|
component: () => import("@/views/Setting.vue"),
|
|
},
|
|
{
|
|
path: "/404",
|
|
name: "404",
|
|
meta: {
|
|
title: "404",
|
|
},
|
|
component: () => import("@/views/404.vue"),
|
|
},
|
|
{
|
|
path: "/:pathMatch(.*)",
|
|
redirect: "/404",
|
|
},
|
|
];
|
|
|
|
const router = createRouter({
|
|
history: createWebHashHistory(),
|
|
routes,
|
|
});
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
document.title = `${to.meta.title} | 泡泡 - 一个清新文艺的微社区`;
|
|
next();
|
|
});
|
|
|
|
export default router;
|