Still learning VueJS, I just wanted to know why when I click on my button my function selection doesn’t work. All the rest in the created() is fine and shows the correct , but in my methods section, just to show a console.log on a click event I have this error :
[Vue warn]: Unhandled error during execution of native event handler at
Am I missing something ?
I only have the code below and the CDN :
JavaScript
x
29
29
1
<div id="main-product">
2
<button v-on:click="selection" type="button" class="">
3
j'affiche coucou
4
</button>
5
</div>
6
7
8
<script>
9
10
if (document.querySelector("#main-product")) {
11
const productForm = Vue.createApp({
12
delimiters: ["${", "}"],
13
data() {
14
return {
15
open: false,
16
};
17
},
18
created() {
19
console.log("vueJS fonctionne correctement");
20
},
21
methods: {
22
selection() {
23
console.log(coucou)
24
}
25
}
26
}).mount("#main-product");
27
}
28
</script>
29
Thank you for your help and support
Advertisement
Answer
The method is attempting to log an undefined symbol: coucou
.
JavaScript
1
10
10
1
var app = new Vue({
2
el: '#app',
3
data: {
4
},
5
methods: {
6
selection() {
7
console.log('coucou')
8
}
9
}
10
})
JavaScript
1
8
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
2
<div id="app">
3
<div id="main-product">
4
<button v-on:click="selection" type="button" class="">
5
j'affiche coucou
6
</button>
7
</div>
8
</div>