All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generator.client.vue.webapp.app.router.router.ts.mustache Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
import { HomepageVue } from '@/common/primary/homepage';
import { createRouter, createWebHistory } from 'vue-router';

const routes = [
  {
    path: '/',
    redirect: { name: 'Homepage' },
  },
  {
    path: '/home',
    name: 'Homepage',
    component: HomepageVue,
  },
];

const router = createRouter({
  history: createWebHistory(),
  routes,
});

export default router;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy