0👍
✅
Hello you need to put the methods in the same component that the template:
<template>
<div class="example" @click="say">say method</div>
</template>
<script>
export default {
methods: {
say () {
console.log('Hello world!')
}
}
}
</script>
Take a look in the vue documents: https://v2.vuejs.org/v2/guide/
Source:stackexchange.com