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

Function VNode

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected