Skip to content

html代码预览

设置自定义html、css、js代码预览器效果

基本用法

运行html、css、js代码

查看代码
vue
<template>
  <htmlCodePreview :html="html" :js="js" :css="css"></htmlCodePreview>
</template>
<script setup>
  const html = `<div class='box'>我是一段html代码</div>`
  const css = `
    .box {
      width:150px;
      height:150px;
      background:#ff0000;
    }
  `
  const js = `console.log('运行js代码')`
</script>

api

props

参数说明类型默认值
html自定义html代码string-
css自定义css代码string-
js自定义js代码string-