gjj
2025-03-19 05f6d4e6609c973f63d51335a4b7d1f01405ebf3
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>