Gary Gu
2025-06-30 84201c1e88b65f16b6da2c85ab8eee23f37a3da1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!-- eslint-disable vue/no-textarea-mustache -->
<!-- eslint-disable vue/html-self-closing -->
<template>
  <dashboard />
</template>
 
<script>
 
export default {
  name: "App",
  components: {
    dashboard: () => import("./Dashboard.vue")
  },
  computed: {
  },
};
</script>