Initial commit

This commit is contained in:
qianhao.xu
2023-11-14 18:09:40 +08:00
commit 19ae3ef130
411 changed files with 33483 additions and 0 deletions

27
src/App.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
import { mapGetters } from "vuex";
export default {
name: "App",
computed: {
...mapGetters(["token"]),
},
watch: {
token: {
handler: function (val) {
if (val) {
this.signalr.start();
}
},
deep: true,
immediate: true,
},
},
};
</script>