@fangzhongya/vue-archive 0.0.80 → 0.0.82
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,25 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
};
|
|
20
|
-
}>> & Readonly<{
|
|
21
|
-
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
22
|
-
}>, {
|
|
23
|
-
html: string;
|
|
24
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
25
|
-
export default _default;
|
|
1
|
+
import { ObjStr, ObjUnk } from '../../config';
|
|
2
|
+
import { SpecObjs, Spec } from '../../utils/index';
|
|
3
|
+
import { DataType } from './util';
|
|
4
|
+
export declare function getHmtl(propsname: string, param: {
|
|
5
|
+
[key: string]: SpecObjs[];
|
|
6
|
+
}, value: ObjUnk, slotValue?: ObjStr, propsText?: ObjStr, exposeText?: ObjUnk): Promise<string>;
|
|
7
|
+
export declare function setValStringify(v: unknown, key: string, propsText?: ObjStr): string | Promise<string>;
|
|
8
|
+
type SelectsObj = {
|
|
9
|
+
label: string;
|
|
10
|
+
prop: unknown;
|
|
11
|
+
};
|
|
12
|
+
export declare function getSpecType(val: Spec): {
|
|
13
|
+
arr: SelectsObj[];
|
|
14
|
+
type: string;
|
|
15
|
+
dataType: DataType[];
|
|
16
|
+
};
|
|
17
|
+
export declare function getDefaultValue(obj: Spec, is?: boolean): any;
|
|
18
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const e
|
|
1
|
+
"use strict";const e=;/* empty css */;/* empty css */module.exports=e;
|
|
@@ -1,14 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import o from "./index.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import n from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const _ = {}, s = { class: "__document" };
|
|
5
|
-
function i(m, d) {
|
|
6
|
-
const e = o("router-view");
|
|
7
|
-
return r(), t("div", s, [
|
|
8
|
-
c(e)
|
|
9
|
-
]);
|
|
10
|
-
}
|
|
11
|
-
const l = /* @__PURE__ */ n(_, [["render", i]]);
|
|
12
3
|
export {
|
|
13
|
-
|
|
4
|
+
o as default
|
|
14
5
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";const e=require("vue"),t=require("vue-router"),n={class:"__document"},o=e.defineComponent({__name:"index",setup(r){return(c,s)=>(e.openBlock(),e.createElementBlock("div",n,[e.createVNode(e.unref(t.RouterView))]))}});module.exports=o;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { defineComponent as e, createElementBlock as o, openBlock as t, createVNode as n, unref as r } from "vue";
|
|
2
|
+
import { RouterView as c } from "vue-router";
|
|
3
|
+
const _ = { class: "__document" }, d = /* @__PURE__ */ e({
|
|
4
|
+
__name: "index",
|
|
5
|
+
setup(m) {
|
|
6
|
+
return (s, a) => (t(), o("div", _, [
|
|
7
|
+
n(r(c))
|
|
8
|
+
]));
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
export {
|
|
12
|
+
d as default
|
|
13
|
+
};
|