<BlogBaseHeading />

Intro

<BlogBaseHeading /> component allows users and search engines to quickly grasp the main topics and sections. With various heading levels, such as h1, h2, etc., it provides a visually hierarchical arrangement, enhancing readability and accessibility.

<BlogBaseHeading/> component is a child of other components

Example

Usage

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

<BlogBaseHeading />

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

import BlogBaseHeading from '/components/global/Blog/Base/Heading';
<template>
   <BlogBaseHeading
       as="h1"
       size="5xl"
       class="text-muted-800"
   />
</template>
Table of Contents