Add swipe gestures for changing days

This commit is contained in:
2022-08-21 23:35:02 +02:00
parent 1439bfb056
commit 198dee45d3
6 changed files with 68 additions and 40 deletions

View File

@ -5,6 +5,7 @@ import { registerSW } from "virtual:pwa-register";
import { createI18n } from "vue-i18n";
import { strings } from "./strings";
import { language } from "./store";
import Vue3TouchEvents from "vue3-touch-events";
const i18n = createI18n({
locale: language.value,
@ -16,6 +17,7 @@ const app = createApp(App);
app.use(router);
app.use(i18n);
app.use(Vue3TouchEvents);
app.mount("#app");