ct-component-plus 0.0.13 → 0.0.15

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ct-component-plus",
3
3
  "private": false,
4
- "version": "0.0.13",
4
+ "version": "0.0.15",
5
5
  "type": "module",
6
6
  "main": "packages/components/index.js",
7
7
  "files": [
@@ -109,7 +109,7 @@ import { tableEmits, tableProps } from "./index";
109
109
  import TableSort from "./TableSort.vue";
110
110
  const props = defineProps(tableProps);
111
111
  const emit = defineEmits(tableEmits);
112
- const tableEmptyDom = inject("$tableEmptyDom");
112
+ const tableEmptyDom = inject("$tableEmptyDom", null);
113
113
 
114
114
  const ns = useNamespace("table");
115
115
  const tableRef = ref(null);