UNPKG

vue3-gyc-ui

Version:

``` npm install vue3-gyc-ui ```

14 lines (13 loc) 289 B
import { createRouter, createWebHistory } from 'vue-router' import home from "../home.vue" const router = createRouter({ history: createWebHistory(import.meta.env.BASE_URL), routes: [ { path: '/', name: 'home', component: home }, ] }) export default router