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

Function VNode

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected