feat: add ripple effect, update theme styles and layout

This commit is contained in:
2026-02-26 22:57:03 +00:00
parent bdbb561740
commit 12a4130c38
13 changed files with 1028 additions and 12 deletions

23
src/router/index.js Normal file
View File

@@ -0,0 +1,23 @@
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