(target, key)
| 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); |