| 2043 | ); |
| 2044 | |
| 2045 | var warnNonPresent = function (target, key) { |
| 2046 | warn( |
| 2047 | "Property or method \"" + key + "\" is not defined on the instance but " + |
| 2048 | 'referenced during render. Make sure that this property is reactive, ' + |
| 2049 | 'either in the data option, or for class-based components, by ' + |
| 2050 | 'initializing the property. ' + |
| 2051 | 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.', |
| 2052 | target |
| 2053 | ); |
| 2054 | }; |
| 2055 | |
| 2056 | var warnReservedPrefix = function (target, key) { |
| 2057 | warn( |