Config
Plugin Options
You can pass these options to the plugin:
playground
Type:
PlaygroundGlobalOptionsinterface PlaygroundCodeConfig { /** * Code block extension * * @description It's based on filename, not code fence language */ ext: string; /** Code block content */ content: string; } interface PlaygroundData { /** Title of Playground */ title?: string; /** * Import map file name * * @default "import-map.json" */ importMap?: string; /** Playground files info */ files: Record< /** File name */ string, /** File detail */ PlaygroundCodeConfig >; /** * Playground settings * * @description It's parsed result of json content after setting directive */ settings: Record<string, unknown>; /** hash key based on playground content */ key: string; } interface PlaygroundOptions { /** Playground container name */ name: string; /** * Playground component name * * @default "Playground" */ component?: string; /** * Props getter */ propsGetter: (data: PlaygroundData) => Record<string, string>; } interface TSPresetPlaygroundOptions extends CompilerOptions { /** * external playground service url * * @default "https://www.typescriptlang.org/play" */ service?: string; } interface VuePresetPlaygroundOptions { /** * external playground service url * * @default "https://sfc.vuejs.org/" */ service?: string; /** * Whether to use dev version * * @default false */ dev?: boolean; /** * Whether to enable SSR * * @default false */ ssr?: boolean; } interface UnoPresetPlaygroundOptions { /** * external playground service url * * @default "https://unocss.dev/play" */ service?: string; } type BuiltInPlaygroundPreset = "ts" | "vue" | "unocss"; interface PlaygroundGlobalOptions { /** Playground presets */ presets: (BuiltInPlaygroundPreset | PlaygroundOptions)[]; /** Playground config */ config?: { ts?: TSPresetPlaygroundOptions; vue?: VuePresetPlaygroundOptions; unocss?: UnoPresetPlaygroundOptions; }; }Required: No
Details:
Playground options.
kotlinPlayground
- Type:
boolean - Default:
false - Details:
Whether to enable kotlin playground support.
vuePlayground
- Type:
boolean - Default:
false - Details:
Whether to enable vue playground support.
demo
- Type:
CodeDemoGlobalOptions | boolean - Default:
false - Details:
Whether to enable code demo support.
demo.jsLib
- Type:
string[] - Required: No
External JS libraries for CodePen, JsFiddle only.
demo.cssLib
- Type:
string[] - Required: No
External JS libraries for CodePen, JsFiddle only.
Warning
The above two options are only used by third-party code demo service, you need to import these libraries in head to get it work.
demo.jsfiddle
- Type:
boolean - Default:
true
Whether to display the JSFiddle button
demo.codepen
- Type:
boolean - Default:
true
Whether to display the CodePen button
demo.codepenLayout
- Type:
"top" | "left" | "correct" - Default:
"left"
CodePen editor layout
demo.codepenEditors
- Type:
string - Default:
"101"
CodePen editor status
others
The following are the library links used by the third-party code demo service. Unless your environment cannot visit unpkg or the speed is slow, you probably don't need to override the default values.
demo.babel
Default value: "https://unpkg.com/@babel/standalone/babel.min.js"
demo.vue
Default value: "https://unpkg.com/vue/dist/vue.global.prod.js"
demo.react
Default value: "https://unpkg.com/react/umd/react.production.min.js"
demo.reactDOM
Default value: "https://unpkg.com/react-dom/umd/react-dom.production.min.js"
sandpack
- Type:
boolean - Default:
false
Whether to enable sandpack playground support.
Client Config
defineKotlinPlaygroundConfig
interface KotlinPlaygroundOptions {
server?: string;
version?: string;
onChange?: (code: string) => void;
onRun?: () => void;
onError?: () => void;
getJsCode?: (code: string) => void;
onTestPassed?: () => void;
onTestFailed?: () => void;
onOpenConsole?: () => void;
onCloseConsole?: () => void;
callback?: (targetNode: HTMLElement, mountNode: HTMLElement) => void;
getInstance?: (instance: KotlinPlaygroundInstance) => void;
}
const defineKotlinPlaygroundConfig: (options: KotlinPlaygroundOptions) => void;Define config which you want to pass to kotlin-playground.
defineSandpackConfig
interface SandpackConfig {
/**
* specify the template
*/
template?: SandpackPredefinedTemplate;
/**
* Options to configure the sandpack
*/
options?: SandpackOptions;
/**
* Options to configure the customSetup
*/
customSetup?: SandpackSetup;
}
const defineSandpackConfig = (config: SandpackConfig)=> voidDefine config which you want to pass to sandpack-vue3.
defineVuePlaygroundConfig
export interface VuePlaygroundOptions
extends Omit<ReplProps, "store" | "editor"> {
/**
* Specify the version of vue
*/
vueVersion?: string;
/**
* Specify default URL to import Vue dev runtime from in the sandbox
*
* @default "https://unpkg.com/@vue/runtime-dom@${version}/dist/runtime-dom.esm-browser.js"
*/
vueRuntimeDevUrl?: string | (() => string);
/**
* Specify default URL to import Vue prod runtime from in the sandbox
*
* @default "https://unpkg.com/@vue/runtime-dom@${version}/dist/runtime-dom.esm-browser.prod.js"
*/
vueRuntimeProdUrl?: string | (() => string);
/**
* Specify default URL to import Vue Server Renderer from in the sandbox
*
* @default "https://unpkg.com/@vue/server-renderer@${version}/dist/server-renderer.esm-browser.js"
*/
vueServerRendererUrl?: string | (() => string);
}
const defineVuePlaygroundConfig: (options: VuePlaygroundOptions) => void;Define config which you want to pass to @vue/repl.
Changelog
660a5-onc9017-on70692-on22787-on99f51-on6ad69-onffeb2-on3dcc0-on913bb-onf0fcc-on7bd34-on92957-on8cb86-ond544c-on95198-on497db-onfa8af-on1669d-on7bc15-onbac94-on2dbdd-on55ea3-onf55f2-on8e9aa-on539b3-onf0736-ondef96-on254c5-onef5af-ona648a-onf6ff7-on573c3-on16ff1-on2a306-ond06e4-ona7a28-on12ecd-on91679-ond0c25-on0eb18-onaf82c-onedf2d-on4104e-on1c52f-on74050-onc5742-on1433d-on6e91a-onb4289-on9df60-on6639c-on2243a-on8b5af-on0e45a-on9fcf5-on23f74-on84771-on3dac6-onfeeb6-on637b2-on7c8cf-on2fa50-on1d7fa-on86cc2-on5498b-on099d8-on80eb7-on57c57-on48bca-on63d09-onad023-on88e69-on6d302-one07b5-on904c0-on60053-on716f9-on227bc-on1d0f9-on67429-on4d1ba-on907b9-on8dc9f-on04b8a-onfca17-onace60-on