@kengic/vue 0.28.3-beta.6 → 0.29.1-beta.1

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/CHANGELOG.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # 0.29.0
2
2
 
3
- ### 1. 后端查询接口支持了高级查询后, 不再需要添加响应头 `HEADER_KG_IS_DYNAMIC_QUERY`
3
+ ### 0. 对应后端框架版本 1.0.0-alpha17
4
+
5
+ ### 1. 后端查询接口支持了不再需要添加响应头 `HEADER_KG_IS_DYNAMIC_QUERY`
4
6
 
5
7
  ```java
6
8
  // 旧
package/README.md CHANGED
@@ -4,5 +4,6 @@
4
4
 
5
5
  ### 代码命名
6
6
 
7
- 1. ComputedRef 类型的变量使用 $$ 后缀
8
- 2. Ref 类型的变量使用 $ 后缀
7
+ 1. ComputedRef 类型的变量使用 $$ 后缀, 入: `class$$`
8
+ 2. Ref 类型的变量使用 $ 后缀, 入: `height$`
9
+ 3. 当组件名称作为前缀时, 使用 $ 包裹组件名称, 入: `$Canvas$get`, `$Canvas$set`