如何使用Electron + Vue (SPA)处理事件



我有问题,弄清楚如何处理事件时使用Vue与电子在一起。这可能看起来很愚蠢,但我花了时间阅读文档,在浏览器中测试Vue实例和指令,这工作得很好,但相同的原则不会在我的电子桌面应用程序中工作(这与Php OOP有很大不同)。

我使用电子值模板,设置它,工作就像一个魅力。创建了一个模板和一个组件(TopMenu),现在我需要处理放置在TopMenu组件中的菜单按钮的单击事件,但无论我如何尝试,我得到:

[Vue warn]:属性或方法"say"不是在实例上定义,但在呈现期间引用。一定要在data选项中声明响应性数据属性。(中组件)事件"click"的处理程序未定义。

。/LandingPageView/TopMenu.vue:

<template>
  <div>
    <button type="button" name="button" v-on:click="say">BUTTON</button>
  </div>
</template>

main.js:

import Vue from 'vue'
import Electron from 'vue-electron'
import Resource from 'vue-resource'
import Router from 'vue-router'
import App from './App'
import routes from './routes'
import 'bootstrap/dist/css/bootstrap.min.css'
import 'bootstrap/dist/js/bootstrap.min.js'
Vue.use(Electron)
Vue.use(Resource)
Vue.use(Router)
Vue.config.debug = true
const router = new Router({
  scrollBehavior: () => ({ y: 0 }),
  routes
})
/* eslint-disable no-new */
new Vue({
  methods: {
    say: function () {
      alert()
    }
  },
  router,
  ...App
}).$mount('#app')

App.vue:

<style>
  @import url(https://fonts.googleapis.com/css?family=Lato:400,700);
  * {
    margin: 0;
    padding: 0;
  }
  html,
  body { height: 100%; }
  body {
    align-items: center;
    background:
      radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 1) 0%,
        rgba(229, 229, 229, .85) 100%
      );
    background-position: center;
    font-family: Lato, Helvetica, sans-serif;
  }
</style>
<template>
  <div>
    <router-view></router-view>
  </div>
</template>
<script>
  import store from 'src/vuex/store'
  export default {
    store
  }
</script>

index.ejs:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title><%= htmlWebpackPlugin.options.title %></title>
  </head>
  <body>
    <div id="app"></div>
    <!-- webpack builds are automatically injected -->
  </body>
</html>

你好,你需要把这些方法放在与模板相同的组件中:

<template>
  <div class="example" @click="say">say method</div>
</template>
<script>
  export default {
    methods: {
      say () {
        console.log('Hello world!')
      }
    }
  }
</script>

查看vue文档:https://v2.vuejs.org/v2/guide/

相关内容

  • 没有找到相关文章