mirror of https://github.com/vuejs/vue.git
6 lines
140 B
JavaScript
6 lines
140 B
JavaScript
|
import VNode from 'core/vdom/vnode'
|
||
|
|
||
|
window.createTextVNode = function (text) {
|
||
|
return new VNode(undefined, undefined, undefined, text)
|
||
|
}
|