toolshed/frontend/src/App.vue

29 lines
396 B
Vue
Raw Normal View History

2023-05-10 21:28:55 +00:00
<script setup>
</script>
<template>
<router-view></router-view>
<!-- TODO UI für Freunde liste, add, remove -->
</template>
<script>
import {mapMutations} from 'vuex';
import store from '@/store';
export default {
name: 'App',
methods: {
...mapMutations(['init'])
},
beforeCreate () {
store.commit('init')
}
}
</script>
<style scoped>
</style>