mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-10 09:39:14 +08:00
20 lines
580 B
HTML
20 lines
580 B
HTML
<title>Vue JSX Explorer</title>
|
|
<link rel="stylesheet" data-name="vs/editor/editor.main" href="https://unpkg.com/monaco-editor@0.20.0/min/vs/editor/editor.main.css">
|
|
|
|
<div id="header"></div>
|
|
<div id="source" class="editor"></div>
|
|
<div id="output" class="editor"></div>
|
|
|
|
<script src="https://unpkg.com/monaco-editor@0.20.0/min/vs/loader.js"></script>
|
|
<script>
|
|
require.config({
|
|
paths: {
|
|
'vs': 'https://unpkg.com/monaco-editor@0.20.0/min/vs'
|
|
}
|
|
})
|
|
</script>
|
|
<script src="./main.js"></script>
|
|
<script>
|
|
require(['vs/editor/editor.main'], init /* injected by build */)
|
|
</script>
|