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

View File

@@ -1,5 +1,11 @@
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import router from './router'
import Ripple from './directives/ripple'
createApp(App).mount('#app')
const app = createApp(App)
app.directive('ripple', Ripple)
app.use(router)
app.mount('#app')