import { createRouter, createWebHashHistory } from 'vue-router' import Home from '@/components/home.vue'; import About from '@/components/about.vue'; import Flutter from '@/components/n_flutter.vue'; const routes = [ { path: '/', component: Home }, { path: '/about', component: About }, { path: '/flutter', component: Flutter }, ] const router = createRouter({ history: createWebHashHistory(), rout..