electron + vite + vue3+ ts 实现右键菜单功能
时间: 2023-09-02 07:09:03 浏览: 293
Electron+Vite+Vue3 模版
首先需要安装一些依赖:
```bash
npm install electron electron-context-menu vite vue@next vue-router@next @vue/compiler-sfc typescript tslib --save-dev
```
然后在 `src` 目录下新建 `main.ts` 和 `renderer.ts` 两个文件。
`main.ts` 的内容如下:
```ts
import { app, BrowserWindow, Menu } from 'electron';
import path from 'path';
import contextMenu from 'electron-context-menu';
// 创建窗口
function createWindow() {
const win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
// 允许使用 node.js
nodeIntegration: true,
// 允许使用 Electron 的 remote 模块
enableRemoteModule: true,
// 允许在渲染进程中使用上下文菜单
contextIsolation: false,
},
});
// 加载页面
win.loadFile(path.join(__dirname, '../renderer/index.html'));
// 打开开发者工具
win.webContents.openDevTools();
// 设置窗口菜单
const template = [
{
label: '菜单1',
submenu: [
{
label: '子菜单1',
click: () => {
console.log('点击了子菜单1');
},
},
{
label: '子菜单2',
click: () => {
console.log('点击了子菜单2');
},
},
],
},
{
label: '菜单2',
click: () => {
console.log('点击了菜单2');
},
},
];
const menu = Menu.buildFromTemplate(template);
Menu.setApplicationMenu(menu);
}
// 当 Electron 初始化完成并准备好创建窗口时调用这个函数
app.whenReady().then(() => {
// 注册上下文菜单
contextMenu({
window: BrowserWindow.getFocusedWindow(),
showInspectElement: true,
});
createWindow();
// 如果所有窗口都关闭了,退出应用
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
});
// 在 macOS 上,当单击 Dock 图标并且没有其他窗口打开时,重新创建一个窗口
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});
```
`renderer.ts` 的内容如下:
```ts
import { createApp } from 'vue';
import App from './App.vue';
createApp(App).mount('#app');
```
接下来在 `src` 目录下新建 `index.html` 文件,并且在里面添加一个 `div` 元素,并且指定它的 `id` 为 `app`。同时在 `body` 元素下添加如下代码:
```html
<script src="./renderer.js"></script>
```
最后在 `package.json` 中添加如下脚本:
```json
{
"scripts": {
"start": "vite",
"build": "vite build",
"electron": "electron ."
}
}
```
现在可以运行 `npm run start` 来启动应用程序,然后运行 `npm run electron` 来启动 Electron 应用程序。现在你应该已经能够看到一个 Electron 窗口,并且它包含一个菜单。如果你右键单击窗口,你应该能够看到一个上下文菜单。
阅读全文