import {Playground} from 'react-exercise-playground' export const Demo1 = () => { return <Playground/> } Playground 是页面组件,使用时对宿主环境有侵入性(会动态加载一些js和css且默认会改变url hash,可以通过配置saveOnUrl={false}属性取消对url的改变)。
npm install react-exercise-playground --save#orpnpm install react-exercise-playground --save 使用示例 import{Playground}from'react-exercise-playground'exportconstDemo1=()=>{return<Playground/>} Playground是基础组件,使用时对宿主环境有侵入性(会动态加载一些js和css且默认会改变url hash,可以通过配置saveOn...