diff --git a/package.json b/package.json index f0fbb78..a51e5ea 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,6 @@ "vfonts": "^0.0.3", "vue": "^3.5.13", "vue-router": "^4.5.0", - "vue3-touch-events": "^4.2.0", "zod": "^3.24.1" }, "devDependencies": { diff --git a/src/main.ts b/src/main.ts index 4f9188f..afa40ff 100644 --- a/src/main.ts +++ b/src/main.ts @@ -5,6 +5,6 @@ import 'element-plus/dist/index.css'; import { createPinia } from 'pinia'; import 'virtual:uno.css'; import { createApp } from 'vue'; -import Vue3TouchEvents, { type Vue3TouchEventsOptions } from 'vue3-touch-events'; + const app = createApp(App); -app.use(createPinia()).use(router).use(Vue3TouchEvents, {}).mount('#app'); +app.use(createPinia()).use(router).mount('#app');