2018-08-28T13:22:09Z||2018-08-28T13:22:09Z
Property or method "abc" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components.
请以此检查以下问题,通常就会找到问题:
- 属性
abc
既没有在props
里定义,也没有在data
中定义。但是在<template>
中有出现。 - 属性
abc
是data
,但是值是undefined
。