Convert frontend to Vue #3

Merged
jacob1123 merged 158 commits from vue into master 2022-02-08 22:20:11 +01:00
Showing only changes of commit 5601c965dc - Show all commits

View File

@ -1,8 +1,12 @@
<script setup>
import { computed, onMounted } from 'vue';
onMounted(function () { console.log(this.$store)});
//const dashboard = computed(() => this.$store.state);
<script>
export default {
computed: {
dashboard () {
console.log(this.$store.state);
return this.$store.state;
}
}
}
</script>
<!--