VUE中在方法里写的button按钮对应的方法怎么写啊?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE中在方法里写的button按钮对应的方法怎么写啊?相关的知识,希望对你有一定的参考价值。

vue使用高德地图的信息窗体,怎么给信息窗体绑定点击事件来跳转.vue页面

参考技术A 直接在methods方法里定义点击事件处理函数的

1、字节在模板里绑定点击事件@click="test"
2、在methods里定义test方法 test()dosomething 注意方法钱不要加async这个是异步的时候使用,一般用于promise追问

点击事件不好使,没有反应怎么回事呀,都是正常写的,没发现错误啊

追答

button是有个默认事件的,需要你阻止一下默认事件哈
有问题私聊我,我想你给你解答,先采纳一下谢谢,我给你解决,谢谢

本回答被提问者采纳
参考技术B var vm = new Vue(
el:"#main",
seen: true,
data:
enlist: "",
status: "",
,
created:function()
this.get_data();
,
methods:
get_data:function()
var _self=this;
var idArray = window.location.pathname.split("/");
var id = idArray['5'];
$.post(":url('/enlist/index/details')",enlist:id,function(e)
console.log(e);
_self.enlist = e;
_self.status = e.recorde;
)
,
recruitment:function()
var idArray = window.location.pathname.split("/");
var id = idArray['5'];
window.location.href="/enlist/index/entry_form/enlist/"+id;


);
方法名就写在methods里面,例如<button @click="recruitment()"></button>就是调用的上面recruitment方法;追问

我想知道在信息窗体里写的button按钮所对应的点击事件应该怎么写

追答


这里写了添加绑定点击事件啊 @click="函数名"

以上是关于VUE中在方法里写的button按钮对应的方法怎么写啊?的主要内容,如果未能解决你的问题,请参考以下文章

android中在fragment A里面点击button跳转到fragment B怎么实现?

vue : 在vuex里写一个数组首尾元素互换的方法

在JSP中没有表单,怎么用按钮(button)将数据提交给某个url,请教这个JS方法怎么写?

css里写的png怎么在ie6里透明

怎么通过JAVA往WORD的里写一张带数据表格?

vue2 我自己写的弹窗组件,弹窗在页面里显示后,原JS文件失效,怎么回事?