修改插件runner为browserview

This commit is contained in:
muwoo
2021-12-03 17:54:58 +08:00
parent 0132a11d7e
commit cd41f0561c
18 changed files with 420 additions and 121 deletions

View File

@@ -1,12 +1,23 @@
import { createRouter, createWebHashHistory, RouteRecordRaw } from "vue-router";
import Market from "../views/market/index.vue";
import Installed from "../views/installed/index.vue";
const routes: Array<RouteRecordRaw> = [
{
path: "/",
name: "Market",
path: "/market",
name: "market",
component: Market,
}
},
{
path: "/installed",
name: "installed",
component: Installed,
},
{
path: "/:catchAll(.*)",
name: "market",
component: Market,
},
];
const router = createRouter({