Skip to content

Commit 489501c

Browse files
committed
Merge branch 'master' of https://github.com/vuejs/docs-next
2 parents 1d22327 + e87d13c commit 489501c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/.vuepress/components/common/vuemastery-video-modal.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div ref="modal" class="modal" :class="{ open: isOpen }">
44
<div class="video-space" style="padding: 56.25% 0 0 0; position: relative;">
55
<iframe
6-
src="https://player.vimeo.com/video/247494684?dnt=1"
6+
src="https://player.vimeo.com/video/455611549?dnt=1"
77
style="height: 100%; left: 0; position: absolute; top: 0; width: 100%; margin: 0"
88
frameborder="0"
99
webkitallowfullscreen
@@ -23,7 +23,7 @@
2323
>Vue Mastery</a>.
2424
Watch Vue Mastery’s free
2525
<a
26-
href="https://www.vuemastery.com/courses/intro-to-vue-js/vue-instance/"
26+
href="https://www.vuemastery.com/courses/intro-to-vue-3/intro-to-vue3"
2727
target="_blank"
2828
rel="sponsored noopener"
2929
title="Vue.js Courses on Vue Mastery"

src/guide/events.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Event Handling
22

3-
<div class="vueschool"><a href="https://vueschool.io/lessons/vuejs-user-events?friend=vuejs" target="_blank" rel="sponsored noopener" title="Learn how to handle events on Vue School">Learn how to handle events in a free Vue School lesson</a></div>
4-
53
## Listening to Events
64

75
We can use the `v-on` directive, which we typically shorten to the `@` symbol, to listen to DOM events and run some JavaScript when they're triggered. The usage would be `v-on:click="methodName"` or with the shortcut, `@click="methodName"`

0 commit comments

Comments
 (0)