import { createRouter, createWebHashHistory } from "vue-router"
const routes = [{
path: '/',
redirect: '/login',
},
{
path: '/login',
name: 'login',
component: () =>
import ('views/login/login.vue')
}
]
export const router = createRouter({
history: createWebHashHistory(),
routes: routes,
})