(target, key)
| 1460 | ); |
| 1461 | |
| 1462 | var warnNonPresent = function (target, key) { |
| 1463 | warn( |
| 1464 | "Property or method \"" + key + "\" is not defined on the instance but " + |
| 1465 | "referenced during render. Make sure to declare reactive data " + |
| 1466 | "properties in the data option.", |
| 1467 | target |
| 1468 | ); |
| 1469 | }; |
| 1470 | |
| 1471 | var hasProxy = |
| 1472 | typeof Proxy !== 'undefined' && |
no test coverage detected