feat(lottery):草创抽奖详情

This commit is contained in:
BTMuli
2023-03-30 22:52:28 +08:00
parent 842066f345
commit 9298f23ae9
5 changed files with 170 additions and 1 deletions

View File

@@ -7,6 +7,8 @@
// 帖子相关
import TPost from "../../views/t-post.vue";
import TPostJson from "../../views/t-post-json.vue";
// 抽奖
import TLottery from "../../views/t-lottery.vue";
const subRoutes = [
{
@@ -19,6 +21,11 @@ const subRoutes = [
name: "帖子详情JSON",
component: TPostJson,
},
{
path: "/lottery/:lottery_id",
name: "抽奖详情",
component: TLottery,
},
];
export default subRoutes;