import Vue from 'vue'
import Router from 'vue-router'
import activity from '@/components/activity.vue'
import ranking from '@/components/ranking.vue'


Vue.use(Router)

export default new Router({
  mode: 'history',
  routes: [{
    path: '/',
    name: 'activity',
    component: activity
  },
    {
      path: '/ranking/:token',
      name: 'ranking',
      component: ranking
    }]
})

vue路由去除#

 

相关文章:

  • 2022-12-23
  • 2022-02-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案