小说小程序后端代码仓库
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.

11 lines
274 B

6 months ago
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. import { constantRouterMap } from '@/config/router.config'
  4. Vue.use(Router)
  5. export default new Router({
  6. mode: 'history',
  7. base: process.env.BASE_URL,
  8. scrollBehavior: () => ({ y: 0 }),
  9. routes: constantRouterMap
  10. })