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
/
inject.js
9 lines
(8 loc)
•
223 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
create
from
'./create'
const
_once = {}
export
default
function
injectCss
(
str
) {
if
(_once[str])
return
const
style =
create
(
'style'
, {
innerHTML
: str })
document
.
body
.
appendChild
(style) _once[str] =
true
}