Files
PC-Light-Forum/js/sectionIndex.js
DESKTOP-RQ919RC\Pc 6bb48ff86d refactor(component): 重构组件模板与样式结构
将公共样式提取至public.css,优化组件模板结构
添加图片资源与组件模板同步脚本
调整组件样式与布局,统一风格
2025-10-22 18:31:16 +08:00

13 lines
389 B
JavaScript

const { createApp, ref, onMounted, nextTick, onUnmounted, computed, watch } = Vue;
import { itemForum } from "../component/item-forum/item-forum.js";
const appSectionIndex = createApp({
setup() {
let signInAlreadyState = ref(false);
return { signInAlreadyState };
},
});
appSectionIndex.component("item-forum", itemForum);
appSectionIndex.mount("#sectionIndex");