<BlogSectionMain />

Intro

<BlogSectionMain /> component is employed to render any component

Example

Usage

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

<BlogSectionMain />

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

import BlogSectionMain from '/components/global/Blog/Section/Main';
<template>
   <main>
       <DynamicSection
           v-for="comp in mainComponents"
           :name="comp.name"
           :key="comp.id"
           :id="comp.id"
           v-bind="comp.props"
       />
   </main>
   <aside>
       <DynamicSection
           v-for="comp in sidebarComponents"
           :name="comp.name"
           :key="comp.id"
           :id="comp.id"
           v-bind="comp.props"
       />
   </aside>
</template>

Config

For configuration's component, visit Config documentation.

Table of Contents