front-end-interview-questions icon indicating copy to clipboard operation
front-end-interview-questions copied to clipboard

【Vue】返回不是纯对象 vue 是怎么做的

Open yayxs opened this issue 3 years ago • 0 comments

if (!isPlainObject(data)) {
  data = {};
  process.env.NODE_ENV !== "production" &&
    warn(
      "data functions should return an object:\n" +
        "https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function",
      vm
    );
}

yayxs avatar Apr 07 '21 02:04 yayxs