Skip to content

main index

bu alanda iki onemli temel bulunuyor render ve view alani her ikisi icinde kaynak olarak store kullanilir

"BuildIndex" --> For Building Form

"ViewIndex" --> For View Form

v
<div class="border p-1 rounded-2 border-gray-500">
    <!-- //for build ground -->
    <template v-if="formStore.activeMain == 'build'">
        <BuildIndex></BuildIndex>
    </template>

    <!-- //for view ground -->
    <template v-if="formStore.activeMain == 'view'">
        <ViewIndex :elements="formStore.data"></ViewIndex>
    </template>
</div>