HTML
모듈 구성
Astro
---import Title from "@shared/ui/title/Title.astro";import HtmlEmbed from "@shared/module/html-embed/HtmlEmbed.astro";---
<section> <Title level={2}>Title</Title> <HtmlEmbed wide={true}> <!-- HTML 코드 --> </HtmlEmbed></section>Props:
wide?:boolean: 와이드형
<section> <h2 class="v-truncate v-title">Title</h2> <div class="v-html-embed v-html-embed--wide"> <!-- HTML 등록 코드 --> </div></section>