UNPKG
@print-one/grapesjs
Version:
latest (0.21.25)
0.21.25
0.21.24
0.21.22
0.21.21
0.21.20
0.21.18
0.21.17
0.21.15
0.21.14
0.21.13
0.21.12
0.21.10
0.21.9
Free and Open Source Web Builder Framework
grapesjs.com
Print-one/grapesjs
@print-one/grapesjs
/
src
/
dom_components
/
view
/
ComponentCommentView.ts
8 lines
(6 loc)
•
226 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
ComponentTextNodeView
from
'./ComponentTextNodeView'
;
export
default
class
ComponentCommentView
extends
ComponentTextNodeView
{
_createElement
(
) {
return
document
.
createComment
(
this
.
model
.
content
)
as
Text
; } }