@feedmepos/mf-order-setting 0.0.15-alpha → 0.0.15-alpha.1
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/KioskSettingView-ChG0eNUq.js +4 -0
- package/dist/{app-C1l6ceHc.js → app-Cu7GdqUm.js} +2 -5
- package/dist/app.js +2 -3
- package/dist/frontend/mf-order/src/app.d.ts +4 -4
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/app.ts +3 -7
- package/src/main.ts +2 -2
- package/dist/KioskSettingView-3xlRvB18.js +0 -4
package/package.json
CHANGED
package/src/app.ts
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
|
-
import type { App } from 'vue'
|
|
2
1
|
import enUS from "./locales/en-US.json"
|
|
3
2
|
import zhCN from "./locales/zh-CN.json"
|
|
4
|
-
|
|
5
|
-
export { default as FmApp } from './App.vue'
|
|
6
|
-
export { routes as routers } from '../src/router/routes'
|
|
3
|
+
export type AppMessagesSchema = typeof enUS
|
|
7
4
|
|
|
8
5
|
export const i18nMessages = {
|
|
9
6
|
"en-US": enUS,
|
|
10
7
|
"zh-CN": zhCN
|
|
11
8
|
}
|
|
12
9
|
|
|
13
|
-
export
|
|
14
|
-
|
|
15
|
-
}
|
|
10
|
+
export { default as FmApp } from './App.vue'
|
|
11
|
+
export { routes as routers } from '../src/router/routes'
|
package/src/main.ts
CHANGED