【Electron】创建Vue3工程
记录一下快速创建 Electron Vue3 的工程的方法。
- 系统:Windows 11
安装 nodejs
设置 npm 源
1
npm config set registry=https://registry.npm.taobao.org
安装 vue 脚手架
1
2# 安装 Vue 脚手架
npm install -g @vue/cli安装完成后需要参考此处,允许系统运行脚本,否则用不了
创建工程
1
vue create test_proj
尝试运行一下
1
2
3
4
5
6
7# 打开项目文件夹
cd test_proj
# 运行开发服务器
npm run serve
# Ctrl + C 退出当前运行安装 Electron
1
vue add electron-builder
(可选)安装 ant-design-vue
1
npm install ant-design-vue --save
在main.js中添加如下代码
1
2
3
4
5
6
7
8
9
10
11
12
13import { createApp } from 'vue'
import App from './App.vue'
// 引用
import Antd from 'ant-design-vue'
import 'ant-design-vue/dist/antd.css'
const app = createApp(App)
// 安装 Antd
app.use(Antd)
app.mount('#app')(可选)安装 vue-router
1
npm install vue-router@4
运行
1
npm run electron:serve
构建安装包
1
npm run electron:build
问题
electron 安装不完全
1
2
3
4# 打开插件目录
cd node_modules/electron
# 运行安装脚本
node install.js如果还是报错,考虑一下开个代理
【Electron】创建Vue3工程