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>
|
|