Vue.js-在mount()中调用data()会引发错误

时间:2019-06-08 12:46:06

标签: vue.js

mounted () {
  this.data(); // or only data();
}

消息:“ this.data不是函数”

页面加载后调用data()的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

也许我不知道this.data()函数, 但只需使用以下示例中的数据即可:

<script>
export default {
  data() {
    return {
      foo: 'bar',
    }
  },
  mounted() {
    console.log(this.foo) // will print "bar"
  },
}
</script>