import {createRouter, createWebHashHistory} from 'vue-router'; import Layout from '@/layout/index.vue' const routes = [ { path: '/update', name: 'Home', component: Layout, } ] const router = createRouter({history: createWebHashHistory(), routes}) export default router