Luxx/dashboard/src/views/AboutView.vue

19 lines
382 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.

<template>
<div class="about">
<h1>关于此项目</h1>
<p>这是 Luxx 项目的管理仪表板前端</p>
<p>技术栈Vue 3 + Vue Router + Pinia + Vite</p>
<router-link to="/">返回首页</router-link>
</div>
</template>
<script setup>
// 可以在此添加组件逻辑
</script>
<style scoped>
.about {
padding: 2rem;
text-align: center;
}
</style>