https://github.com/heiyehk/electron-vue3-inote
【I便笺】electron11+vue3ts开发,所见所得的markdown创作,多开窗口本地储存。([I Notes] Developed by electron11+vue3ts, WYSIWYG markdown creation, open more windows and store locally.)
https://github.com/heiyehk/electron-vue3-inote
electron electron-vue-notes notes sqlite3 typescript vue3
Last synced: 5 months ago
JSON representation
【I便笺】electron11+vue3ts开发,所见所得的markdown创作,多开窗口本地储存。([I Notes] Developed by electron11+vue3ts, WYSIWYG markdown creation, open more windows and store locally.)
- Host: GitHub
- URL: https://github.com/heiyehk/electron-vue3-inote
- Owner: heiyehk
- License: apache-2.0
- Archived: true
- Created: 2020-12-12T10:27:12.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-06-15T16:11:29.000Z (over 1 year ago)
- Last Synced: 2025-03-23T18:37:20.578Z (7 months ago)
- Topics: electron, electron-vue-notes, notes, sqlite3, typescript, vue3
- Language: Vue
- Homepage:
- Size: 1.67 MB
- Stars: 369
- Watchers: 7
- Forks: 87
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# electron+vue3+ts
> 在Windows环境下,删除`node_modules`重新安装依赖的情况下,会导致`build`报错,需要使用`npm i`进行安装依赖。
> In the Windows environment, deleting `node_modules` and reinstalling dependencies will cause `build` errors, and you need to use `npm i` to install dependencies.![]()
![]()
![]()
![]()
![]()

### Windows
### Mac
## 启动
```
yarn serve
```## 打包
```
yarn build
```## 教程
【electron+vue3+ts实战便笺exe】一、搭建框架配置
https://juejin.cn/post/6909723449246089224【electron+vue3+ts实战便笺exe】二、electron+vue3开发内容
https://juejin.cn/post/6909725365107687431【electron+vue3+ts实战便笺exe】终章:markdown编辑器以及右键功能实现
https://juejin.cn/post/7187704994731130938
```
electron-vue3-inote
├── babel.config.js
├── package.json
├── public
│ ├── css
│ ├── favicon.ico
│ ├── font
│ └── index.html
├── script # 打包删除脚本
│ └── deleteBuild.js
├── src
│ ├── App.vue
│ ├── assets
│ ├── background.ts
│ ├── components
│ ├── config # electron和软件的一些配置项
│ ├── less
│ ├── main.ts
│ ├── router # 路由
│ ├── service # 存放sqlite3 db服务
│ ├── shims-vue.d.ts
│ ├── store
│ ├── types
│ ├── utils
│ └── views
├── tsconfig.json
└── vue.config.js
```