scrimba
VUE 10 - The Boundary of Event Propagation
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

VUE 10 - The Boundary of Event Propagation
AboutCommentsNotes
VUE 10 - The Boundary of Event Propagation
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="app">
<button v-on:click="increase(3)">Increase</button>
<button v-on:click="decrease(4)">Decrease</button> </br>
{{counter}}
<p v-on:mousemove="showCoodinates">{{ x }}, {{ y }}</p>
</div>
<script src="index.pack.js"></script>
</body>
</html>
Console
"Download the Vue Devtools extension for a better development experience: https://github.com/vuejs/vue-devtools"
,
"You are running Vue in development mode. Make sure to turn on production mode when deploying for production. See more tips at https://vuejs.org/guide/deployment.html"
,
index.html
-5:38