我有一个电子项目,我想用它来使用 vueJS

I've an electron project and I'd like to use vueJS with it

我有一个 electron 项目,我想用它来使用 vueJS...我需要有人来解释我应该按顺序做什么

你的问题对于这个网站来说相当模糊。如果您希望 Vue.js 成为您的电子应用程序的主要框架,this package is a good option. It is really well done, and very well documented here.

但是,如果您只想在应用程序的一小部分中使用 Vue,只需通过 npm (npm install vue -s) 导入它并在需要的地方使用它。

import Vue from 'vue'

let app = new Vue({
  el: '#element',
  data() {
    return {}
  },
  ...
})

在这种情况下,您会发现 vue 文档的 Getting Started 部分很有帮助。祝你好运!