<DynamicSection />

Intro

<DynamicSection /> component is employed to render any component

<DynamicSection/> component is a used in BlogSectionMain

Usage

To use the component, simply add it to your template:

<DynamicSection />

The component is located in the @/components/global/Blog/Dynamic/Section directory. To use the component, import it into your file:

import DynamicSection from '/components/global/Blog/Dynamic/Section';
<template>
   <DynamicSection
       v-for="component in maincomponents"
       :key="component.id"
       :id="component.id"
       :name="component.name"
       v-bind="component.props"
   />
</template>
Table of Contents