bkui-vue 2.0.1-beta.44 → 2.0.1-beta.45
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 +15 -0
- package/dist/index.cjs.js +31 -31
- package/dist/index.esm.js +5123 -5069
- package/dist/index.umd.js +25 -25
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/index.js +1 -1
- package/lib/resize-layout/index.d.ts +23 -0
- package/lib/resize-layout/index.js +22 -6
- package/lib/resize-layout/resize-layout.d.ts +11 -0
- package/lib/search-select/index.d.ts +12 -6
- package/lib/search-select/index.js +33 -10
- package/lib/search-select/input.d.ts +2 -1
- package/lib/search-select/search-select.d.ts +4 -2
- package/lib/search-select/selected.d.ts +4 -2
- package/lib/select/index.js +6 -4
- package/lib/table/index.js +82 -77
- package/lib/table/table.css +4 -0
- package/lib/table/table.less +6 -0
- package/lib/table/table.variable.css +4 -0
- package/lib/table-column/index.js +1 -3
- package/lib/virtual-render/index.js +51 -12
- package/lib/virtual-render/v-virtual-render.d.ts +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -46,6 +46,21 @@ yarn lint
|
|
46
46
|
* 执行命令 `yarn generate:icon`
|
47
47
|
* 在组件中使用类似语法 `import { HelpFill } from '@bkui-vue/icon/';` 引用即可
|
48
48
|
|
49
|
+
## 容器化
|
50
|
+
|
51
|
+
想要快速的通过容器化方式启动,可以参照以下步骤,快速在容器化服务器上进行部署启动。
|
52
|
+
|
53
|
+
```
|
54
|
+
# 本地镜像打制
|
55
|
+
docker build -t bkui-vue3 .
|
56
|
+
|
57
|
+
# 容器化运行
|
58
|
+
docker run -p 8086:8086 bkui-vue3
|
59
|
+
|
60
|
+
# 开发调试
|
61
|
+
docker run -it -p 8086:8086 -v $(pwd):/app bkui-vue3
|
62
|
+
```
|
63
|
+
|
49
64
|
## 如何开始
|
50
65
|
|
51
66
|
想要贡献代码,建议请先参照已有的特性文档和开发环境构建文档。可以运行 `yarn cc` 输入组件名生成新组件模板
|