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