diff --git a/CHANGELOG.zh_CN.md b/CHANGELOG.zh_CN.md index f8d186926..2729b9b0e 100644 --- a/CHANGELOG.zh_CN.md +++ b/CHANGELOG.zh_CN.md @@ -14,6 +14,12 @@ - useForm: 支持动态改变参数。可以传入`Ref`类型与`Computed`类型进行动态更改 - table: 新增`clickToRowSelect`属性。用于控制点击行是否选中勾选狂 - table: 监听行点击事件 +- table: 表格列配置按钮增加 列拖拽,列固定功能。 +- table:表格列配置新增`defaultHidden` 属性。用于默认隐藏。可在表格列配置勾选显示 + +### ✨ Refactor + +- 重构表单,解决已知 bug ### ⚡ Performance Improvements diff --git a/package.json b/package.json index 850824910..8b7dd8d07 100644 --- a/package.json +++ b/package.json @@ -63,11 +63,11 @@ "@types/sortablejs": "^1.10.6", "@types/yargs": "^15.0.12", "@types/zxcvbn": "^4.4.0", - "@typescript-eslint/eslint-plugin": "^4.11.0", - "@typescript-eslint/parser": "^4.11.0", + "@typescript-eslint/eslint-plugin": "^4.11.1", + "@typescript-eslint/parser": "^4.11.1", "@vue/compiler-sfc": "^3.0.4", - "@vuedx/typecheck": "^0.2.4-0", - "@vuedx/typescript-plugin-vue": "^0.2.4-0", + "@vuedx/typecheck": "^0.4.0", + "@vuedx/typescript-plugin-vue": "^0.4.0", "autoprefixer": "^9.8.6", "commitizen": "^4.2.2", "conventional-changelog-cli": "^2.1.1", @@ -102,7 +102,7 @@ "vite-plugin-html": "^1.0.0-beta.2", "vite-plugin-mock": "^1.0.9", "vite-plugin-purge-icons": "^0.4.5", - "vite-plugin-pwa": "^0.2.0", + "vite-plugin-pwa": "^0.2.1", "vue-eslint-parser": "^7.3.0", "yargs": "^16.2.0" }, diff --git a/src/App.vue b/src/App.vue index c54e55d2e..c0c46bf9c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,9 +1,5 @@