fast-crud-ui3 1.5.13 → 1.5.14-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +14 -28
- package/lib/fast-crud-ui3.cjs.js +6 -6
- package/lib/fast-crud-ui3.es.js +858 -857
- package/lib/fast-crud-ui3.umd.js +6 -6
- package/lib/style.css +1 -1
- package/package.json +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 pengxianggui
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,15 +1,23 @@
|
|
|
1
1
|
# fast-crud-ui3
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
>
|
|
5
|
-
>
|
|
3
|
+
<h1 align="center" style="margin: 30px 0 30px; font-weight: bold;">FastCrudUi3</h1>
|
|
4
|
+
<h4 align="center">基于Vue/ElementPlus开发的表格快速开发工具, 快速实现功能强大的表格维护页面</h4>
|
|
5
|
+
<p align="center">
|
|
6
|
+
<a href="http://fastcrud-doc.pengxg.cc/">文档</a> |
|
|
7
|
+
<a href="http://fastcrud.pengxg.cc/">演示环境</a> |
|
|
8
|
+
<a href="https://github.com/pengxianggui/fast-crud">配套后端</a> |
|
|
9
|
+
<a href="https://github.com/pengxianggui/fast-crud-ui3/releases">ChangeLog</a> |
|
|
10
|
+
<a href="https://github.com/pengxianggui/fast-crud-ui3/blob/main/LICENSE">LICENSE</a>
|
|
11
|
+
</p>
|
|
12
|
+
|
|
13
|
+
> 1. 此项目为[fast-crud-ui](https://github.com/pengxianggui/fast-crud-ui)的vue3升级支持版本。
|
|
14
|
+
> 2. 此项目必须配合[后端](https://github.com/pengxianggui/fast-crud)使用。
|
|
6
15
|
|
|
7
16
|
## 说明:
|
|
8
17
|
|
|
9
|
-
**fast-crud-ui3基于vue@^3.4.0 + element-plus@^2.3.12, fast-crud-ui3
|
|
10
|
-
**
|
|
18
|
+
**fast-crud-ui3基于vue@^3.4.0 + element-plus@^2.3.12, fast-crud-ui3打包不会包含这两个组件,你必须在项目里单独安装并正确注册。**
|
|
11
19
|
|
|
12
|
-
如果针对element-
|
|
20
|
+
如果针对element-plus你采用的是按需部分引入,请确保以下element-plus组件正确注册, 否则fast-crud-ui3中部分内容将无法正常展示:
|
|
13
21
|
|
|
14
22
|
Table, TableColumn, Input, InputNumber, Checkbox, CheckboxGroup, Select, Option, DatePicker, Switch, TimePicker, Radio,
|
|
15
23
|
Upload, Row, Col, Button, Empty, Popover, Form, FormItem, Dropdown, DropdownMenu, DropdownItem, Pagination, Link
|
|
@@ -17,24 +25,6 @@ Upload, Row, Col, Button, Empty, Popover, Form, FormItem, Dropdown, DropdownMenu
|
|
|
17
25
|
> node=18.16.0
|
|
18
26
|
> npm=9.5.1
|
|
19
27
|
|
|
20
|
-
## 组件列表
|
|
21
|
-
|
|
22
|
-
- FastTable: 核心组件
|
|
23
|
-
- FastTableColumn: 只读列组件
|
|
24
|
-
- FastTableColumnInput: 文本输入框列组件
|
|
25
|
-
- FastTableColumnNumber: 数字输入框列组件
|
|
26
|
-
- FastTableColumnTextarea: 文本域输入框列组件
|
|
27
|
-
- FastTableColumnSelect: 下拉框列组件
|
|
28
|
-
- FastTableColumnSwitch: switch列组件
|
|
29
|
-
- FastTableColumnDatePicker: 日期选择列组件
|
|
30
|
-
- FastTableColumnTimePicker: 时间选择列组件
|
|
31
|
-
- FastTableColumnImg: 图片列组件
|
|
32
|
-
- FastTableColumnFile: 文件列组件
|
|
33
|
-
- FastTableColumnObject: 对象选择组件
|
|
34
|
-
|
|
35
|
-
> 你也可以直接使用原生的el-table-column,但是需要注意的是由于行数据被封装, 所以需要解构一下: {row, editRow},使用row来做单元格数据展示,
|
|
36
|
-
> 详见[文档](http://fastcrud-doc.pengxg.cc/latest/comp/fast-table-column.html#%E5%85%AC%E5%85%B1%E6%8F%92%E6%A7%BD)
|
|
37
|
-
|
|
38
28
|
## 快速开始
|
|
39
29
|
|
|
40
30
|
安装
|
|
@@ -71,8 +61,6 @@ for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
|
|
71
61
|
app.component(key, component)
|
|
72
62
|
}
|
|
73
63
|
app.mount('#app')
|
|
74
|
-
|
|
75
|
-
|
|
76
64
|
```
|
|
77
65
|
|
|
78
66
|
使用
|
|
@@ -106,5 +94,3 @@ app.mount('#app')
|
|
|
106
94
|
}
|
|
107
95
|
</script>
|
|
108
96
|
```
|
|
109
|
-
|
|
110
|
-
更多使用文档参见: [这里](http://fastcrud-doc.pengxg.cc)。
|