Skip to content

Commit 4f1991f

Browse files
author
lizl6
committed
update
1 parent d2e3175 commit 4f1991f

File tree

2 files changed

+24
-9
lines changed

2 files changed

+24
-9
lines changed

README.md

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
- [x] 随机串/密码生成器
88

9-
- [ ] 中文/ASCii互转
9+
- [x] 中文/ASCii互转
1010

1111
- [ ] 中文/UTF-8互转
1212

1313
- [ ] AES/DES加解密
1414

1515
- [ ] MD5、SHA加密
1616

17-
- [ ] base64编码/解码
17+
- [ ] Base64编码/解码
1818

1919
# 开发
2020

@@ -24,19 +24,32 @@ git clone
2424
cd coderbox
2525
npm i
2626

27+
# 运行
28+
npm start
29+
```
30+
31+
Bootstrap5终于不再需要jquery了,可以和Vue一起用:
32+
33+
```bash
34+
npm i -D electron
35+
npm i vue bootstrap @popperjs/core
36+
```
37+
38+
# 发行版打包
39+
40+
```bash
2741
# 安装electron-builder
2842
npm i -g electron-builder
43+
44+
cd coderbox
2945
# linux环境下打包
3046
npm run build-dist:linux
3147
# win环境下打包
3248
npm run build-dist:win
3349
```
3450

35-
Bootstrap5终于不再需要jquery了,可以和Vue一起用:
51+
# 截图
3652

37-
```bash
38-
npm i -D electron webpack webpack-cli css-loader style-loader html-webpack-plugin
39-
npm i vue vue-router bootstrap @popperjs/core
40-
```
53+
![image-20220913152703258](https://imgbd.r-xnoro.com//image-20220913152703258.png)
4154

42-
# 截图
55+
![image-20220913152551500](https://imgbd.r-xnoro.com//image-20220913152551500.png)

src/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@
2020
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">编码/加密</a>
2121
<div class="dropdown-menu">
2222
<a href="#" @click="to('ascii')" class="dropdown-item">中文/ASCii互转</a>
23+
<a href="#" class="dropdown-item">中文/UTF-8互转</a>
2324
<a href="#" class="dropdown-item">Base64编码/解码</a>
24-
<a href="#" class="dropdown-item">ASCii编码</a>
25+
<a href="#" class="dropdown-item">MD5、SHA加密</a>
26+
<a href="#" class="dropdown-item">AES/DES加解密</a>
2527
</div>
2628
</li>
2729
<li class="nav-item">

0 commit comments

Comments
 (0)