Skip to content

html代码在线运行

html代码在线运行器,支持在线编辑,在线预览

基本用法

查看代码
vue
<template>
<htmlCodeRun :js="js" :html="html" :css="css"></htmlCodeRun>
</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-