UNPKG
vuepress-demo-block
Version:
latest (0.4.3)
0.4.3
0.4.2
0.4.1
vuepress demo box
github.com/xiguaxigua/vuepress-demo-block
xiguaxigua/vuepress-demo-block
vuepress-demo-block
/
src
/
tpl.js
15 lines
(14 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
function
getHtmlTpl
(
html
) {
return
`<div id="app">
${html}
</div>`
}
export
function
getJsTpl
(
js
) {
const
jsContent = js.
replace
(
/export default \{\n/
,
''
) .
replace
(
/\n}$/
,
''
) .
trim
()
return
`new Vue({ el: '#app',
${jsContent}
})`
}