2019-10-05 05:43:20 +08:00
|
|
|
<title>Vue Template Explorer</title>
|
2020-03-07 01:02:38 +08:00
|
|
|
<link rel="stylesheet" data-name="vs/editor/editor.main" href="https://unpkg.com/monaco-editor@0.20.0/min/vs/editor/editor.main.css">
|
2019-10-05 05:43:20 +08:00
|
|
|
<link rel="stylesheet" href="./style.css">
|
2019-10-05 01:08:06 +08:00
|
|
|
|
2019-10-05 05:43:20 +08:00
|
|
|
<div id="header"></div>
|
2019-10-05 01:08:06 +08:00
|
|
|
<div id="source" class="editor"></div>
|
|
|
|
<div id="output" class="editor"></div>
|
|
|
|
|
2019-10-05 05:55:55 +08:00
|
|
|
<script src="https://unpkg.com/estree-walker@0.8.1/dist/estree-walker.umd.js"></script>
|
|
|
|
<script src="https://unpkg.com/source-map@0.6.1/dist/source-map.js"></script>
|
2020-03-07 01:02:38 +08:00
|
|
|
<script src="https://unpkg.com/monaco-editor@0.20.0/min/vs/loader.js"></script>
|
2019-10-05 01:08:06 +08:00
|
|
|
<script>
|
|
|
|
window._deps = {
|
2019-10-05 05:43:20 +08:00
|
|
|
'estree-walker': estreeWalker,
|
|
|
|
'source-map': sourceMap
|
2019-10-05 01:08:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
require.config({
|
|
|
|
paths: {
|
2020-03-07 01:02:38 +08:00
|
|
|
'vs': 'https://unpkg.com/monaco-editor@0.20.0/min/vs'
|
2019-10-05 01:08:06 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
</script>
|
2020-02-28 05:53:51 +08:00
|
|
|
<script src="./dist/template-explorer.global.js"></script>
|
2019-10-05 01:08:06 +08:00
|
|
|
<script>
|
|
|
|
require(['vs/editor/editor.main'], init /* injected by build */)
|
|
|
|
</script>
|