Files
yaoayanui/src/views/oem/OemOverviewView.vue
fengchuanhn@gmail.com 3b0a8d777c 11
2026-05-21 00:19:08 +08:00

15 lines
358 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>