-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpreview.html
51 lines (47 loc) · 1.58 KB
/
preview.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="//unpkg.com/element-plus/dist/index.css" />
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<script src="//unpkg.com/element-plus"></script>
<script src="//unpkg.com/element-plus/dist/locale/zh-cn"></script>
<script src="https://unpkg.com/[email protected]/dist/vue-router.global.js"></script>
<style></style>
</head>
<body>
<noscript>
<strong>抱歉,javascript被禁用,请开启后重试。</strong>
</noscript>
<div id="previewApp"></div>
<script>
const { createApp, ref, defineComponent } = Vue
const $previewApp = document.getElementById('previewApp')
window.addEventListener('message', initIframe, false)
function initIframe(event) {
if (event.data.type === 'refreshFrame') {
$previewApp.innerHTML = `<div id="app"></div>`
const code = event.data.data
newVue(code.js, code.html)
}
}
function newVue(main, html) {
main = eval(`(${main})`)
main.template = `<div>${html}</div>`
const app = createApp({
components: {
child: main,
},
template: `<div><child /></div>`,
})
app.use(ElementPlus, {
locale: ElementPlusLocaleZhCn,
})
app.mount('#app')
}
</script>
</body>
</html>