sun-form-v3 1.0.25 → 1.0.26
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/sun-form-v3.es.js +18 -10
- package/dist/sun-form-v3.umd.js +1 -1
- package/package.json +1 -1
package/dist/sun-form-v3.es.js
CHANGED
@@ -1,19 +1,27 @@
|
|
1
|
-
import "vue";
|
2
|
-
const
|
1
|
+
import { openBlock as s, createElementBlock as c, Fragment as o, createTextVNode as _, createElementVNode as r } from "vue";
|
2
|
+
const a = /* @__PURE__ */ Object.assign({ name: "testBtn" }, {
|
3
3
|
__name: "testBtn",
|
4
4
|
setup(t) {
|
5
|
-
return (
|
5
|
+
return (e, n) => " testBtn ";
|
6
6
|
}
|
7
|
-
}),
|
7
|
+
}), m = /* @__PURE__ */ r("input", { type: "text" }, null, -1), u = /* @__PURE__ */ Object.assign({ name: "testInput" }, {
|
8
|
+
__name: "testInput",
|
9
|
+
setup(t) {
|
10
|
+
return (e, n) => (s(), c(o, null, [
|
11
|
+
_(" testInput "),
|
12
|
+
m
|
13
|
+
], 64));
|
14
|
+
}
|
15
|
+
}), p = /* @__PURE__ */ Object.assign({ name: "show" }, {
|
8
16
|
__name: "show",
|
9
17
|
setup(t) {
|
10
|
-
return (
|
18
|
+
return (e, n) => " sunForm ";
|
11
19
|
}
|
12
|
-
}),
|
13
|
-
t.component("testBtn",
|
14
|
-
},
|
15
|
-
install:
|
20
|
+
}), i = (t) => {
|
21
|
+
t.component("testBtn", a), t.component("testInput", u), t.component("show", p);
|
22
|
+
}, h = {
|
23
|
+
install: i
|
16
24
|
};
|
17
25
|
export {
|
18
|
-
|
26
|
+
h as default
|
19
27
|
};
|
package/dist/sun-form-v3.umd.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n(require("vue")):typeof define=="function"&&define.amd?define(["vue"],n):(e=typeof globalThis<"u"?globalThis:e||self,e.SunFormV3=n())})(this,function(){"use strict";const
|
1
|
+
(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n(require("vue")):typeof define=="function"&&define.amd?define(["vue"],n):(e=typeof globalThis<"u"?globalThis:e||self,e.SunFormV3=n(e.Vue))})(this,function(e){"use strict";const n=Object.assign({name:"testBtn"},{__name:"testBtn",setup(t){return(s,o)=>" testBtn "}}),c=e.createElementVNode("input",{type:"text"},null,-1),u=Object.assign({name:"testInput"},{__name:"testInput",setup(t){return(s,o)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createTextVNode(" testInput "),c],64))}}),r=Object.assign({name:"show"},{__name:"show",setup(t){return(s,o)=>" sunForm "}});return{install:t=>{t.component("testBtn",n),t.component("testInput",u),t.component("show",r)}}});
|