aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src-vue/src/App.vue')
-rw-r--r--src-vue/src/App.vue15
1 files changed, 14 insertions, 1 deletions
diff --git a/src-vue/src/App.vue b/src-vue/src/App.vue
index 70afd62c..06499058 100644
--- a/src-vue/src/App.vue
+++ b/src-vue/src/App.vue
@@ -1,6 +1,19 @@
-<script setup lang="ts">
+<script lang="ts">
import PlayView from './views/PlayView.vue';
import { appWindow } from '@tauri-apps/api/window';
+import { store } from './plugins/store';
+
+export default {
+ components: {
+ PlayView
+ },
+ data() {
+ return {}
+ },
+ mounted: () => {
+ store.commit('initializeListeners');
+ }
+}
</script>
<template>