Skip to content

Sandpack Sandbox

可以在文档中Markdown Container语法添加Sandpack Sandbox。示例如下:

<template>
  <h1>Hello {{ msg }}</h1>
</template>

<script setup>
import { ref } from 'vue';
const msg = ref('world');
</script>

基于 MIT 许可发布