index.js 399 B

12345678910111213141516171819202122232425
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. Vue.use(Router)
  4. export default new Router({
  5. routes: [
  6. {
  7. path: '/',
  8. name: 'landing-page',
  9. component: require('@/components/LandingPage').default
  10. },
  11. {
  12. path: '*',
  13. redirect: '/'
  14. },
  15. {
  16. path: '/',
  17. name: 'scan',
  18. component: require('@/components/scan').default
  19. },
  20. ]
  21. })