Skip to content

代码编辑器

编辑代码

基本用法

运行css代码

查看代码
vue
<template>
  <codeEditor style="height:500px" language="css" :value="css"></codeEditor>
</template>
<script setup>
  const css = `
    .box {
      width:150px;
      height:150px;
      background:#ff0000;
    }
  `

</script>

运行js代码

api

props

参数说明类型默认值
value代码内容string-
readOnly是否可编辑Boolean-
language语言stringjavascript
theme主题stringvs-dark