feat: replace native titles with global vue tooltips

This commit is contained in:
2026-03-04 04:30:38 +00:00
parent b5a79f8dbe
commit 27fee3ac34
12 changed files with 237 additions and 33 deletions

View File

@@ -3,6 +3,7 @@ import './style.css'
import App from './App.vue'
import router from './router'
import Ripple from './directives/ripple'
import { tooltipDirective } from './directives/tooltip'
import { BarcodeDetector, prepareZXingModule } from 'barcode-detector/ponyfill'
// Configure BarcodeDetector polyfill to use local WASM file
@@ -28,5 +29,6 @@ try {
const app = createApp(App)
app.directive('ripple', Ripple)
app.directive('tooltip', tooltipDirective)
app.use(router)
app.mount('#app')