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");