15 lines
358 B
Vue
15 lines
358 B
Vue
<script setup>
|
||
import { useAuthStore } from "../../stores/auth";
|
||
|
||
const auth = useAuthStore();
|
||
</script>
|
||
|
||
<template>
|
||
<div class="admin-page">
|
||
<h1 class="admin-page__title gradient-text">概览</h1>
|
||
<p class="text-sm text-text-muted">
|
||
欢迎,{{ auth.currentUser?.username }}。在此查看系统运行概况。
|
||
</p>
|
||
</div>
|
||
</template>
|