A js playground component in vue3.
npm i @guolao/js-playground
<template>
<js-playground default-code="code" />
</template>
<script setup>
import { JSPlayground } from '@guolao/js-playground'
import '@guolao/js-playground/dist/style.css'
const code = 'console.log(123)'
</script>