大湾社区城市书房智慧大屏
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.

22 lines
319 B

2 days ago
  1. import Vue from 'vue'
  2. import VueRouter from 'vue-router'
  3. Vue.use(VueRouter)
  4. const routes = [
  5. {
  6. path: '/',
  7. name: 'index',
  8. component: () => import('../views/index.vue'),
  9. meta: {
  10. title: '智慧大屏'
  11. }
  12. }
  13. ]
  14. const router = new VueRouter({
  15. mode: 'hash',
  16. routes
  17. })
  18. export default router