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.

请以此检查以下问题,通常就会找到问题:

  1. 属性abc既没有在props里定义,也没有在data中定义。但是在<template>中有出现。
  2. 属性abcdata,但是值是undefined