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

Function VNode

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected