Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. //No App.vue:
  2.  
  3. <h1 v-arthur:click="myfunction">Directives Exercise</h1>
  4.  
  5. Vue.directive('arthur', {
  6. myfunction(){
  7. alert('minha diretiva personalizada v-on funcionou!');
  8. }
  9. });
  10.  
  11. <script>
  12. export default {
  13. methods: {
  14. myfunction();
  15. }
  16. }
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement