11 lines
261 B
Vue
11 lines
261 B
Vue
|
|
<script setup lang="ts"></script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<h1 class="text-2xl font-bold">Dashboard</h1>
|
||
|
|
<p class="mt-2 text-muted">
|
||
|
|
This page uses the sidebar layout. Replace this content with your own dashboard widgets.
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
</template>
|