@feedmepos/mf-financing 0.0.2 → 0.0.3
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/dist/app.d.ts +2 -2
- package/dist/app.js +18 -16
- package/dist/package.json +1 -1
- package/dist/router/index.d.ts +3 -0
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/app.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import enUS from "./assets/locales/en-US.json";
|
|
2
|
+
import { routes } from "./router";
|
|
2
3
|
export type AppMessagesSchema = typeof enUS;
|
|
3
4
|
export declare const i18nMessages: {
|
|
4
5
|
"en-US": {
|
|
@@ -8,6 +9,5 @@ export declare const i18nMessages: {
|
|
|
8
9
|
financing: {};
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
|
-
|
|
12
|
-
export { routers };
|
|
12
|
+
export { routes };
|
|
13
13
|
export { default as FmApp } from "./App.vue";
|
package/dist/app.js
CHANGED
|
@@ -6,21 +6,23 @@ const Et = {}, wt = {
|
|
|
6
6
|
financing: Et
|
|
7
7
|
}, St = {}, At = {
|
|
8
8
|
financing: St
|
|
9
|
-
}, Tt =
|
|
9
|
+
}, Tt = [
|
|
10
|
+
{
|
|
11
|
+
path: "/",
|
|
12
|
+
name: "mf-financing",
|
|
13
|
+
component: () => import("./Financing-6bpYBvrC.js")
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
path: "/forbidden",
|
|
17
|
+
name: "mf-financing-forbidden",
|
|
18
|
+
component: () => import("./Forbidden-Dqw0MqyC.js")
|
|
19
|
+
}
|
|
20
|
+
];
|
|
21
|
+
ht({
|
|
10
22
|
history: dt(),
|
|
11
|
-
routes:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
name: "mf-financing",
|
|
15
|
-
component: () => import("./Financing-6bpYBvrC.js")
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
path: "/forbidden",
|
|
19
|
-
name: "mf-financing-forbidden",
|
|
20
|
-
component: () => import("./Forbidden-Dqw0MqyC.js")
|
|
21
|
-
}
|
|
22
|
-
]
|
|
23
|
-
}), Ct = It("mf-financing-iframe", () => {
|
|
23
|
+
routes: Tt
|
|
24
|
+
});
|
|
25
|
+
const Ct = It("mf-financing-iframe", () => {
|
|
24
26
|
const r = {
|
|
25
27
|
isIframe: !1
|
|
26
28
|
}, e = ft(() => r);
|
|
@@ -3679,9 +3681,9 @@ const Jn = /* @__PURE__ */ pt({
|
|
|
3679
3681
|
}), qn = {
|
|
3680
3682
|
"en-US": wt,
|
|
3681
3683
|
"zh-CN": At
|
|
3682
|
-
}
|
|
3684
|
+
};
|
|
3683
3685
|
export {
|
|
3684
3686
|
Jn as FmApp,
|
|
3685
3687
|
qn as i18nMessages,
|
|
3686
|
-
|
|
3688
|
+
Tt as routes
|
|
3687
3689
|
};
|
package/dist/package.json
CHANGED
package/dist/router/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type RouteRecordRaw } from "vue-router";
|
|
1
2
|
declare module "vue-router" {
|
|
2
3
|
interface RouteMeta {
|
|
3
4
|
parent?: string;
|
|
@@ -9,5 +10,7 @@ declare module "vue-router" {
|
|
|
9
10
|
};
|
|
10
11
|
}
|
|
11
12
|
}
|
|
13
|
+
declare const routes: RouteRecordRaw[];
|
|
12
14
|
declare const router: import("vue-router").Router;
|
|
15
|
+
export { routes };
|
|
13
16
|
export default router;
|