<BlogBaseContentWrapper />

Intro

<BlogBaseContentWrapper /> component acts as a container to encapsulate and structure the main content of the blog.

Usage

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

<BlogBaseContentWrapper />

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

import BlogBaseContentWrapper from '/components/global/Blog/Base/ContentWrapper';
<template>
   <div>
       <BlogBaseContentWrapper>
           <div>
               <h2>CONTENT</h2>
           </div>
       </BlogBaseContentWrapper>
   </div>
</template>
Table of Contents