orderiom-api-package 0.4.113 → 0.4.115
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/index.js +3 -1
- package/package.json +1 -1
- package/src/modules/order.js +1 -0
package/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import apiStore from './src';
|
|
2
2
|
import enMsg from "./src/messages/en-api.json";
|
|
3
3
|
import deMsg from "./src/messages/de-api.json";
|
|
4
|
-
import frMsg from
|
|
4
|
+
import frMsg from "./src/messages/fr-api.json";
|
|
5
|
+
import itMsg from "./src/messages/it-api.json";
|
|
5
6
|
import {$http as api, defineInterceptors as di, weekdays, formatDate, formatTime} from './src/common';
|
|
6
7
|
|
|
7
8
|
function install(Vue, options = {}, config = {}) {
|
|
@@ -16,6 +17,7 @@ export default {
|
|
|
16
17
|
enMsg,
|
|
17
18
|
deMsg,
|
|
18
19
|
frMsg,
|
|
20
|
+
itMsg,
|
|
19
21
|
modules: apiStore.modules,
|
|
20
22
|
$http: api,
|
|
21
23
|
weekdays,
|
package/package.json
CHANGED