HTML
Astro
---import HtmlEmbed from "@shared/module/html-embed/HtmlEmbed.astro";---
<HtmlEmbed wide={true}> <!-- HTML 코드 --></HtmlEmbed>Props:
wide?:boolean: 와이드형
Code
<section class="v-tmpl v-tmpl--html"> <h2 class="v-title v-truncate">TITLE</h2> <div class="v-html-embed"> <!-- HTML 등록 코드 --> </div></section>
<section class="v-tmpl v-tmpl--html"> <h2 class="v-title v-truncate">TITLE</h2> <div class="v-html-embed v-html-embed--wide"> <!-- (와이드) HTML 등록 코드 --> </div></section>