routes.js 254 B

12345678910111213
  1. import Distributor from './components/Distributor.vue';
  2. import Home from './components/Home.vue';
  3. export const routes= [
  4. {
  5. path: '',
  6. component: Home
  7. },
  8. {
  9. path: '/distributor',
  10. component: Distributor
  11. },
  12. ]