refactor: enhance routing and state management in CoopBuilder, add migration checks on startup, and update Tailwind configuration for improved component styling
This commit is contained in:
parent
848386e3dd
commit
4cea1f71fe
55 changed files with 4053 additions and 1486 deletions
15
components/dashboard/DashboardCoreMetrics.vue
Normal file
15
components/dashboard/DashboardCoreMetrics.vue
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<div class="hidden" data-ui="dashboard_core_metrics_v1" />
|
||||
<div class="grid gap-4 sm:grid-cols-2 lg:grid-cols-3">
|
||||
<RunwayCard />
|
||||
<NeedsCoverageCard />
|
||||
<RevenueMixCard />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
// Import child components explicitly
|
||||
import RunwayCard from './RunwayCard.vue'
|
||||
import NeedsCoverageCard from './NeedsCoverageCard.vue'
|
||||
import RevenueMixCard from './RevenueMixCard.vue'
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue