fast-crud-ui3 1.5.4 → 1.5.6
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/README.md +5 -3
- package/lib/fast-crud-ui3.cjs.js +4 -4
- package/lib/fast-crud-ui3.es.js +2366 -2328
- package/lib/fast-crud-ui3.umd.js +4 -4
- package/lib/style.css +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# fast-crud-ui3
|
|
2
2
|
|
|
3
3
|
> [fast-crud-ui](https://github.com/pengxianggui/fast-crud-ui)的vue3升级支持版本
|
|
4
|
-
>
|
|
4
|
+
>
|
|
5
5
|
> 后端: [传送门](https://github.com/pengxianggui/fast-crud)
|
|
6
6
|
|
|
7
7
|
## 说明:
|
|
@@ -31,7 +31,9 @@ Upload, Row, Col, Button, Empty, Popover, Form, FormItem, Dropdown, DropdownMenu
|
|
|
31
31
|
- FastTableColumnImg: 图片列组件
|
|
32
32
|
- FastTableColumnFile: 文件列组件
|
|
33
33
|
- FastTableColumnObject: 对象选择组件
|
|
34
|
-
|
|
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)
|
|
35
37
|
|
|
36
38
|
## 快速开始
|
|
37
39
|
|
|
@@ -103,4 +105,4 @@ app.mount('#app')
|
|
|
103
105
|
</script>
|
|
104
106
|
```
|
|
105
107
|
|
|
106
|
-
更多使用文档参见: [这里](http://pengxg.cc
|
|
108
|
+
更多使用文档参见: [这里](http://fastcrud-doc.pengxg.cc)。
|