Direct v-html Binding with User Data
Raw HTML is injected with v-html, allowing user-provided content to render as executable markup without encoding or sanitization.
Preview example – HTML
<!-- Dangerous: v-html with user content -->
<template>
<div v-html="userContent"></div>
</template>