13 lines
389 B
JavaScript
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");
|