Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <template>
  2. ...
  3. <my-button @[someEvent]="handleSomeEvent()"/>
  4. ...
  5. </template>
  6.  
  7. <script>
  8. ...
  9. data(){
  10. return{
  11. ...
  12. someEvent: someCondition ? "click" : "dblclick"
  13. }
  14. },
  15.  
  16. methods:{
  17. handleSomeEvent(){
  18. // do something
  19. }
  20. }
  21. ...
  22. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement