feat(论坛页面): 新增论坛首页板块和签到功能

添加论坛首页板块布局和样式,包括导航栏、签到功能、板块列表和精选内容展示
实现签到状态管理,添加签到按钮和已签到状态显示
新增多个图标资源文件用于界面展示
优化CSS样式结构,删除冗余代码文件
This commit is contained in:
A1300399510
2025-10-21 01:42:38 +08:00
parent 08760739d0
commit acb96969d7
12 changed files with 1538 additions and 717 deletions

View File

@@ -2,8 +2,8 @@ const { createApp, ref, onMounted, nextTick, onUnmounted, computed, watch } = Vu
createApp({
setup() {
let signInAlreadyState = ref(false);
return { };
return { signInAlreadyState };
},
}).mount("#appIndex");
}).mount("#sectionIndex");