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

Function VNode

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected