简体中文
主题
可以在文档中Markdown Container语法添加Sandpack Sandbox。示例如下:
<template> <h1>Hello {{ msg }}</h1> </template> <script setup> import { ref } from 'vue'; const msg = ref('world'); </script>