如何在 App.vue 文件中创建数据属性?

How to create data properties in the App.vue file?

我是 Vue CLI 3 的新手。我刚刚使用 vue create 创建了一个新项目,并尝试在 App.vueexport default 部分添加一些 data 属性=]文件使用Vue.js tutorial,

的语法
  data: { 
    people: ["Mary", "Lluis", "Pepe"]
  }

但它不起作用,出现错误 data property must be a function。我试过了,

  data: function() { 
    people: ["Mary", "Lluis", "Pepe"]
  }

但是也不管用。你知道我应该怎么做吗?为什么 Vue.js Tutorial 在语法上有如此大的不同?谢谢。

您忘记了return

 data: function() { 
   return {
     people: ["Mary", "Lluis", "Pepe"]
   }
 }