2019-10-04 21:43:20 +00:00
|
|
|
<title>Vue Template Explorer</title>
|
2020-03-06 17:02:38 +00: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-04 21:43:20 +00:00
|
|
|
<link rel="stylesheet" href="./style.css">
|
2019-10-04 17:08:06 +00:00
|
|
|
|
2019-10-04 21:43:20 +00:00
|
|
|
<div id="header"></div>
|
2019-10-04 17:08:06 +00:00
|
|
|
<div id="source" class="editor"></div>
|
|
|
|
<div id="output" class="editor"></div>
|
|
|
|
|
2020-03-06 17:02:38 +00:00
|
|
|
<script src="https://unpkg.com/monaco-editor@0.20.0/min/vs/loader.js"></script>
|
2019-10-04 17:08:06 +00:00
|
|
|
<script>
|
|
|
|
require.config({
|
|
|
|
paths: {
|
2020-03-06 17:02:38 +00:00
|
|
|
'vs': 'https://unpkg.com/monaco-editor@0.20.0/min/vs'
|
2019-10-04 17:08:06 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
</script>
|
2020-02-27 21:53:51 +00:00
|
|
|
<script src="./dist/template-explorer.global.js"></script>
|
2019-10-04 17:08:06 +00:00
|
|
|
<script>
|
|
|
|
require(['vs/editor/editor.main'], init /* injected by build */)
|
|
|
|
</script>
|