@kengic/vue 0.30.1-beta.55 → 0.30.1-beta.56
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 +4 -3
- package/dist/kengic-vue.js +25023 -24992
- package/dist/src/component/KgSimulator/KgSimulator.Canvas.service.d.ts +7 -7
- package/dist/src/component/KgSimulator/KgSimulator.model.d.ts +16 -0
- package/dist/src/component/KgSimulator/KgSimulator.store.d.ts +160 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
### 代码命名
|
|
6
6
|
|
|
7
|
-
1. ComputedRef 类型的变量使用 $$ 后缀,
|
|
8
|
-
2. Ref 类型的变量使用 $ 后缀,
|
|
9
|
-
3. 当组件名称或者模块名称作为前缀时, 使用 $ 包裹组件名称,
|
|
7
|
+
1. ComputedRef 类型的变量使用 $$ 后缀, 如: `class$$`
|
|
8
|
+
2. Ref 类型的变量使用 $ 后缀, 如: `height$`
|
|
9
|
+
3. 当组件名称或者模块名称作为前缀时, 使用 $ 包裹组件名称, 如: `$Canvas$get`, `$Canvas$set`
|
|
10
|
+
4. 动词使用小写开头, 名词使用大写开头, 如: `$Canvas$get`, `$Canvas$Status`
|