Skip to content

imguolao/js-playground

Repository files navigation

JS Playground

A js playground component in vue3.

LICENSE NPM

Installation

npm i @guolao/js-playground

Usage

<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>