MCPcopy Create free account
hub / github.com/TruthHun/BookStack / VNode

Function VNode

static/vuejs/vue.runtime.js:1555–1582  ·  view source on GitHub ↗
(
  tag,
  data,
  children,
  text,
  elm,
  context,
  componentOptions
)

Source from the content-addressed store, hash-verified

1553/* */
1554
1555var VNode = function VNode (
1556 tag,
1557 data,
1558 children,
1559 text,
1560 elm,
1561 context,
1562 componentOptions
1563) {
1564 this.tag = tag;
1565 this.data = data;
1566 this.children = children;
1567 this.text = text;
1568 this.elm = elm;
1569 this.ns = undefined;
1570 this.context = context;
1571 this.functionalContext = undefined;
1572 this.key = data && data.key;
1573 this.componentOptions = componentOptions;
1574 this.componentInstance = undefined;
1575 this.parent = undefined;
1576 this.raw = false;
1577 this.isStatic = false;
1578 this.isRootInsert = true;
1579 this.isComment = false;
1580 this.isCloned = false;
1581 this.isOnce = false;
1582};
1583
1584var prototypeAccessors = { child: {} };
1585

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected