import { createRouter, createWebHistory } from 'vue-router' import Main from '../components/Main.vue' import Passwords from '../components/tools/Passwords.vue' const routes = [ { path: '/', name: 'Home', component: Main }, { path: '/passwords', name: 'Passwords', component: Passwords } ] const router = createRouter({ history: createWebHistory(), routes }) export default router