v1.0.0
gongfuxiang 2024-10-19 16:35:56 +08:00
parent 50050a8d69
commit f7d0c16eba
4 changed files with 10749 additions and 2 deletions

View File

@ -290,6 +290,9 @@
"onWatcherCleanup": true, "onWatcherCleanup": true,
"useId": true, "useId": true,
"useModel": true, "useModel": true,
"useTemplateRef": true "useTemplateRef": true,
"DirectiveBinding": true,
"MaybeRef": true,
"MaybeRefOrGetter": true
} }
} }

View File

@ -31,13 +31,21 @@ npm install
### Compile and Hot-Reload for Development ### Compile and Hot-Reload for Development
```sh ```sh
开发调试
npm run dev npm run dev
``` ```
### Type-Check, Compile and Minify for Production ### Type-Check, Compile and Minify for Production
```sh ```sh
开发环境
npm run build npm run build
## 想要运行项目需要在根目录上新增一个文件temp.d.ts文件否则运行和打包都会报错
```
```sh
生产环境
npm run build-pro
``` ```
### Lint with [ESLint](https://eslint.org/) ### Lint with [ESLint](https://eslint.org/)

10736
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -59,7 +59,7 @@
<!-- 视图渲染 --> <!-- 视图渲染 -->
<div class="main"> <div class="main">
<div class="model-content"> <div class="model-content">
<right-side-operation v-if="typeof select_index === 'number' && !isNaN(select_index) && diy_data.length > 0" v-model:index="select_index" v-model:dataLength="diy_data.length" @del="del" @copy="copy" @previous_layer="previous_layer" @underlying_layer="underlying_layer" @top_up="top_up" @bottom_up="bottom_up"></right-side-operation> <right-side-operation v-if="typeof select_index === 'number' && !isNaN(select_index) && diy_data.length > 0" v-model:index="select_index" v-model:data-length="diy_data.length" @del="del" @copy="copy" @previous_layer="previous_layer" @underlying_layer="underlying_layer" @top_up="top_up" @bottom_up="bottom_up"></right-side-operation>
<!-- 拖拽区 --> <!-- 拖拽区 -->
<div class="model-drag"> <div class="model-drag">
<div class="model-wall"> <div class="model-wall">