@cmstops/pro-compo 3.10.5-stable.2 → 3.10.5-stable.4
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, inject, watch, ref, onMounted, openBlock, createBlock, unref, withCtx, renderSlot, createVNode, isRef, createElementVNode, createElementBlock, Fragment, renderList } from "vue";
|
|
1
|
+
import { defineComponent, inject, watch, ref, onMounted, nextTick, openBlock, createBlock, unref, withCtx, renderSlot, createVNode, isRef, createElementVNode, createElementBlock, Fragment, renderList } from "vue";
|
|
2
2
|
import { Pagination } from "@arco-design/web-vue";
|
|
3
3
|
import _sfc_main$1 from "../ListWraper.js";
|
|
4
4
|
import useAttachement from "../../../../hooks/useAttachement.js";
|
|
@@ -39,7 +39,9 @@ const _sfc_main = defineComponent({
|
|
|
39
39
|
{ immediate: true }
|
|
40
40
|
);
|
|
41
41
|
onMounted(() => {
|
|
42
|
-
|
|
42
|
+
nextTick(() => {
|
|
43
|
+
loadData();
|
|
44
|
+
});
|
|
43
45
|
});
|
|
44
46
|
return (_ctx, _cache) => {
|
|
45
47
|
return openBlock(), createBlock(_sfc_main$1, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cmstops/pro-compo",
|
|
3
|
-
"version": "3.10.5-stable.
|
|
3
|
+
"version": "3.10.5-stable.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -26,7 +26,15 @@
|
|
|
26
26
|
"build:doc": "npx storybook build",
|
|
27
27
|
"test": "arco-vue-scripts test",
|
|
28
28
|
"add:component": "node ./scripts/add-component.js",
|
|
29
|
-
"prepublishOnly": "npm run build"
|
|
29
|
+
"prepublishOnly": "npm run build",
|
|
30
|
+
"version:prerelease": "npm version prerelease --preid=stable",
|
|
31
|
+
"version:patch": "npm version patch",
|
|
32
|
+
"version:minor": "npm version minor",
|
|
33
|
+
"version:major": "npm version major",
|
|
34
|
+
"publish:stable": "npm run version:prerelease && npm publish --tag stable",
|
|
35
|
+
"publish:patch": "npm run version:patch && npm publish",
|
|
36
|
+
"publish:minor": "npm run version:minor && npm publish",
|
|
37
|
+
"publish:major": "npm run version:major && npm publish"
|
|
30
38
|
},
|
|
31
39
|
"husky": {
|
|
32
40
|
"hooks": {
|