小编fox*_*ris的帖子

vue.js 中数据中的方法和方法中的方法之间的区别

我想知道在数据中声明的方法和在方法中声明的方法有什么区别?

var app = new Vue({
  el: "#vue-app",
  data: {
    name: function() {
      console.log("Alex");
    }
  },
  methods: {
    name: function() {
      console.log("Alex");
    }
  }
});
Run Code Online (Sandbox Code Playgroud)

javascript vue.js

5
推荐指数
1
解决办法
465
查看次数

标签 统计

javascript ×1

vue.js ×1