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