vue-web-component-wrapper
Version:
A Vue 3 plugin that provides a web component wrapper with styles, seamlessly integrating with Vuex, Vue Router, Vue I18n, and supporting Tailwind CSS and Sass styles.
25 lines (24 loc) • 554 B
text/typescript
// Note: This file is used by the main.js file to load the routes
// !! The Name of the route must be unique !!
export const defaultRoutes = [
{
name: 'home',
path: `/`,
component: () => import('./routes/home-page.vue'),
},
{
name: 'test1',
path: `/test1`,
component: () => import('./routes/test1-page.vue'),
},
{
name: 'test2',
path: `/test2`,
component: () => import('./routes/test2-page.vue'),
},
{
name: 'test3',
path: `/test3`,
component: () => import('./routes/test3-page.vue'),
},
]