tm-table 1.2.6 → 1.2.7

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -42,7 +42,7 @@ Vue.use(TmTable);
42
42
  // Vue 3
43
43
  import { createApp } from "vue";
44
44
  import TmTable from "tm-table/v3";
45
- import "tm-table/style";
45
+ import "tm-table/v3/style";
46
46
  const app = createApp();
47
47
  app.use(TmTable);
48
48
  ```
@@ -807,7 +807,7 @@ options: async () => {
807
807
  ```
808
808
 
809
809
  ## 📝 更新日志
810
- ### 1.2.5
810
+ ### 1.2.7
811
811
  - 🐛 **修复列显示控制问题**
812
812
  - 修复 `tm-table-column` 组件上 `v-if` 指令不生效的问题
813
813
  - 支持 `v-show` 指令动态控制列的显示和隐藏
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tm-table",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "A table component for Vue",
5
5
  "main": "dist/vue2/tm-table.umd.js",
6
6
  "module": "dist/vue2/tm-table.es.js",
@@ -27,7 +27,8 @@
27
27
  "require": "./dist/vue3/tm-table.umd.js",
28
28
  "default": "./dist/vue3/tm-table.umd.js"
29
29
  },
30
- "./style": "./dist/vue2/tm-table.css"
30
+ "./style": "./dist/vue2/tm-table.css",
31
+ "./v3/style": "./dist/vue3/tm-table.css"
31
32
  },
32
33
  "dependencies": {
33
34
  "sortablejs": "^1.15.6"