mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
fix: use innerText as tooltip text instead of bindings
- this fixes the updates problem -
This commit is contained in:
+4
-3
@@ -1,12 +1,13 @@
|
||||
import "./assets/scss/index.scss";
|
||||
|
||||
import { createPinia } from "pinia";
|
||||
import { createApp } from "vue";
|
||||
import { createPinia } from "pinia";
|
||||
import piniaPluginPersistedstate from "pinia-plugin-persistedstate";
|
||||
import vTooltip from "./directives/vTooltip";
|
||||
|
||||
|
||||
import App from "./App.vue";
|
||||
import router from "./router";
|
||||
import vTooltip from "./directives/vTooltip";
|
||||
|
||||
const app = createApp(App);
|
||||
const pinia = createPinia();
|
||||
@@ -16,4 +17,4 @@ app.use(pinia);
|
||||
app.use(router);
|
||||
app.directive("tooltip", vTooltip);
|
||||
|
||||
app.mount("#app");
|
||||
app.mount("#app")
|
||||
|
||||
Reference in New Issue
Block a user