auto-vue-manual 0.0.2
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/README.md +1 -0
- package/dist/auto-vue-page.es.js +13 -0
- package/dist/auto-vue-page.umd.js +1 -0
- package/dist/index.css +1 -0
- package/dist/types/components/index.d.ts +13 -0
- package/dist/types/components/table/components/loading.d.ts +2 -0
- package/dist/types/components/table/hook/useAutoHeight.d.ts +0 -0
- package/dist/types/components/table/hook/useSelection.d.ts +17 -0
- package/dist/types/components/table/hook/useTable.d.ts +66 -0
- package/dist/types/components/table/interface/index.d.ts +134 -0
- package/dist/types/components/table/utils/copy.d.ts +5 -0
- package/dist/types/components/table/utils/table.d.ts +46 -0
- package/dist/types/index.d.ts +8 -0
- package/dist/types/store/helper/persist.d.ts +8 -0
- package/dist/types/store/modules/cache.d.ts +7 -0
- package/dist/types/types/index.d.ts +2 -0
- package/dist/types/types/install.d.ts +7 -0
- package/dist/types/types/pinia.d.ts +12 -0
- package/dist/types/utils/index.d.ts +5 -0
- package/dist/types/utils/mittBus.d.ts +15 -0
- package/dist/version.js +1 -0
- package/package.json +58 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
自用组件库,引入无用!
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const t = (e) => {
|
|
2
|
+
if (!e.request)
|
|
3
|
+
throw new Error("request function is required");
|
|
4
|
+
e.request, e.mittBus;
|
|
5
|
+
}, r = {
|
|
6
|
+
install: (e, i) => {
|
|
7
|
+
Reflect.ownKeys(e._context.provides).some((n) => String(n) === "Symbol(pinia)") || console.warn("Pinia is not provided. Please install and provide Pinia in your app."), t(i);
|
|
8
|
+
},
|
|
9
|
+
version: "__VERSION__"
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
r as default
|
|
13
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n():typeof define=="function"&&define.amd?define(n):(e=typeof globalThis<"u"?globalThis:e||self,e.AutoVuePage=n())})(this,function(){"use strict";const e=i=>{if(!i.request)throw new Error("request function is required");i.request,i.mittBus};return{install:(i,t)=>{Reflect.ownKeys(i._context.provides).some(s=>String(s)==="Symbol(pinia)")||console.warn("Pinia is not provided. Please install and provide Pinia in your app."),e(t)},version:"__VERSION__"}});
|