feat: 反馈中心,工具随机推荐、广告开关

This commit is contained in:
osiris
2023-12-12 10:36:09 +08:00
parent 55083da9f5
commit 19bf468fb5
7 changed files with 137 additions and 53 deletions
+3 -2
View File
@@ -1,10 +1,11 @@
//通过vue-router插件实现模板路由配置
import { createRouter, createWebHashHistory } from 'vue-router'
import { createRouter, createWebHistory } from 'vue-router'
import { constantRoute } from './router'
//创建路由器
const router = createRouter({
//路由模式hash
history: createWebHashHistory(),
// history: createWebHashHistory(),
history: createWebHistory(),
routes: constantRoute,
//滚动行为
scrollBehavior() {