Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How vuejs binds functions

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

vuejs how to bind functions, I believe many inexperienced people are helpless about this, this article summarizes the causes and solutions of the problem, through this article I hope you can solve this problem.

vuejs binding function method: 1, use the form of "" to bind;2, use the form of "" to bind.

This tutorial operating environment: Windows 7 system, vue2.9.6 version, DELL G3 computer.

Event binding in vuejs is done using, where the function name is defined in the methods object in Vue instance, Vue instance can directly access the methods in it.

How events are bound

(1) Inline directly write js on the label to call the method

The first way to write an execution method

(2) Call methods defined in methods

The first way to write an execution method Short form of execution method export default { data () { return { msg: 'hello vue', list:[] } }, methods:{ run:function(){ alert ('this is a method'); } } }

Method parameters, method directly in the call when passing parameters in the method

Executing Method Transfer Value 111 Executing method passing value 2222 deleteData(val){ alert(val); },

Incoming Event Objects

event object eventFn(e){ console.log(e); // e.srcElement dom node e.srcElement.style.background='red'; console.log(e.srcElement.dataset.aid); /* Get custom attribute values */ After reading the above, do you know how vuejs binds functions? If you still want to learn more skills or want to know more related content, welcome to pay attention to the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report