Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 493 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 493 Bytes

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>