MCPcopy
hub / github.com/NaiboWang/EasySpider / warnReservedPrefix

Function warnReservedPrefix

ElectronJS/src/taskGrid/vue.js:2057–2065  ·  view source on GitHub ↗
(target, key)

Source from the content-addressed store, hash-verified

2055 };
2056
2057 var warnReservedPrefix = function (target, key) {
2058 warn(
2059 "Property \"" + key + "\" must be accessed with \"$data." + key + "\" because " +
2060 'properties starting with "$" or "_" are not proxied in the Vue instance to ' +
2061 'prevent conflicts with Vue internals. ' +
2062 'See: https://vuejs.org/v2/api/#data',
2063 target
2064 );
2065 };
2066
2067 var hasProxy =
2068 typeof Proxy !== 'undefined' && isNative(Proxy);

Callers 1

vue.jsFile · 0.85

Calls 1

warnFunction · 0.70

Tested by

no test coverage detected