nuxt-hs-ui 2.0.7 → 2.0.8
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/module.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import dayjs from "dayjs/esm/index";
|
|
2
|
-
import ja from "dayjs/locale/ja.js";
|
|
3
|
-
import en from "dayjs/locale/en.js";
|
|
2
|
+
import ja from "dayjs/esm/locale/ja.js";
|
|
3
|
+
import en from "dayjs/esm/locale/en.js";
|
|
4
4
|
import { defineStore } from "pinia";
|
|
5
5
|
import { computed, watch } from "#imports";
|
|
6
6
|
import { GetTextByMultiLang } from "../utils/multi-lang.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import dayjs from "dayjs/esm/index";
|
|
2
|
-
import utc from "dayjs/plugin/utc
|
|
3
|
-
import timezone from "dayjs/plugin/timezone";
|
|
4
|
-
import advancedFormat from "dayjs/plugin/advancedFormat";
|
|
5
|
-
import ja from "dayjs/locale/ja.js";
|
|
6
|
-
import en from "dayjs/locale/en.js";
|
|
2
|
+
import utc from "dayjs/esm/plugin/utc";
|
|
3
|
+
import timezone from "dayjs/esm/plugin/timezone";
|
|
4
|
+
import advancedFormat from "dayjs/esm/plugin/advancedFormat";
|
|
5
|
+
import ja from "dayjs/esm/locale/ja.js";
|
|
6
|
+
import en from "dayjs/esm/locale/en.js";
|
|
7
7
|
let init = false;
|
|
8
8
|
export const DayjsInit = () => {
|
|
9
9
|
if (init) return;
|