Enhances navigation by redirecting the main dashboard to the analysis page and updating the navigation link to directly access the analysis section. This change streamlines user access to the primary dashboard functionality.
11 lines
170 B
Vue
11 lines
170 B
Vue
<script setup>
|
|
provide('id', ref())
|
|
</script>
|
|
|
|
<template>
|
|
<main class="space-y-6">
|
|
<DashboardBreadcrumb title="Analysis" />
|
|
<Dashboard />
|
|
</main>
|
|
</template>
|