21 lines
378 B
Markdown
21 lines
378 B
Markdown
### 初始化 wails 模版
|
|
|
|
```shell
|
|
wails generate template -name wails-vue3-template
|
|
```
|
|
|
|
### 使用模版初始化 wails 项目
|
|
```shell
|
|
wails init -n [项目名称] -t wails-vue3-template
|
|
```
|
|
|
|
#### 从远程模板生成
|
|
```shell
|
|
wails init -n [项目名称] -t https://github.com/misitebao/wails-template-vue
|
|
```
|
|
|
|
### 生成 wails binding
|
|
```shell
|
|
wails generate module
|
|
```
|