vue onclick事件调用vue的函数

html源码:

查看详情

js源码:

 created() {

    let  that = this;

    window.detailsBtn= that.detailsBtn;

  },

  methods: {

 detailsBtn: function () {

     console.log('调用成功');

    },

}

你可能感兴趣的:(vue.js)