[Vuejs]-How to handle events using Electron + Vue (SPA)

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/

Leave a comment