vue3-core/packages-private/template-explorer/index.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
675 B
HTML
Raw Normal View History

2019-10-05 05:43:20 +08:00
<title>Vue Template 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"
/>
<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>
<script src="https://unpkg.com/monaco-editor@0.20.0/min/vs/loader.js"></script>
2019-10-05 01:08:06 +08:00
<script>
require.config({
paths: {
vs: 'https://unpkg.com/monaco-editor@0.20.0/min/vs',
},
})
2019-10-05 01:08:06 +08:00
</script>
<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 */)
2019-10-05 01:08:06 +08:00
</script>