# vue 网格标绘系统 **Repository Path**: jiangxiaohang0/vue-grid-plotting-system ## Basic Information - **Project Name**: vue 网格标绘系统 - **Description**: 凭兴趣再做,也不知道有什么用,或许可以用来做游戏, 或许可以用来标绘 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 20 - **Created**: 2023-06-07 - **Last Updated**: 2023-06-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # electron-vite-vue 🥳 Really simple `Electron` + `Vue` + `Vite` boilerplate. [![GitHub Build](https://github.com/electron-vite/electron-vite-vue/actions/workflows/build.yml/badge.svg)](https://github.com/electron-vite/electron-vite-vue/actions/workflows/build.yml) [![GitHub Discord](https://img.shields.io/badge/chat-discord-blue?logo=discord)](https://discord.gg/sRqjYpEAUK) ## Features 📦 Out of the box 🎯 Based on the official [template-vue-ts](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-vue-ts), less invasive 🌱 Extensible, really simple directory structure 💪 Support using Node.js API in Electron-Renderer 🔩 Support C/C++ native addons 🖥 It's easy to implement multiple windows ## Quick Start ```sh npm create electron-vite ``` ![electron-vite-vue.gif](/public/electron-vite-vue.gif) ## Debug ![electron-vite-react-debug.gif](https://github.com/electron-vite/electron-vite-react/blob/main/public/electron-vite-react-debug.gif?raw=true) ## Directory ```diff + ├─┬ electron + │ ├─┬ main + │ │ └── index.ts entry of Electron-Main + │ └─┬ preload + │ └── index.ts entry of Preload-Scripts ├─┬ src │ └── main.ts entry of Electron-Renderer ├── index.html ├── package.json └── vite.config.ts ``` ## Be aware 🚨 By default, this template integrates Node.js in the Renderer process. If you don't need it, you just remove the option below. [Because it will modify the default config of Vite](https://github.com/electron-vite/vite-plugin-electron-renderer#config-presets-opinionated). ```diff # vite.config.ts export default { plugins: [ - // Use Node.js API in the Renderer-process - renderer({ - nodeIntegration: true, - }), ], } ``` ## FAQ - [dependencies vs devDependencies](https://github.com/electron-vite/vite-plugin-electron-renderer#dependencies-vs-devdependencies) - [C/C++ addons, Node.js modules - Pre-Bundling](https://github.com/electron-vite/vite-plugin-electron-renderer#dependency-pre-bundling)