迁移UI框架至naive-ui,重构组件和样式,添加Gallery和Mask组件

This commit is contained in:
2025-12-28 16:45:58 +08:00
parent 4c097e4c40
commit 96edada2ff
54 changed files with 2482 additions and 2979 deletions

18
src/views/Blog.vue Normal file
View File

@ -0,0 +1,18 @@
<template>
<div class="article-page">
<h1>文章页</h1>
</div>
</template>
<script setup lang="ts">
definePage({
name: 'blog',
meta: {
title: '文章',
}
})
</script>
<style scoped>
/* 文章页样式 */
</style>