main
vue 9 lines 201 Bytes
Raw
1 <template>
2 <div class="page @container flex flex-col gap-6">
3 <DashboardsList />
4 </div>
5 </template>
6
7 <script setup lang="ts">
8 import DashboardsList from "@/components/dashboards/List.vue"
9 </script>