Gary Gu
7 days ago c6c3204631d7c2aaf1c65106587a3fc5b5e1ad8d
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>