@explorer-1/vue 0.1.0 → 0.1.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/package.json +1 -1
- package/src/components/BackToTop/BackToTop.vue +1 -1
- package/src/components/MissionDetailHighlights/MissionDetailHighlights.vue +1 -1
- package/src/components/NavDesktop/NavDesktopDropdownContent.vue +2 -2
- package/src/components/NavDesktop/NavDesktopDropdownMore.vue +2 -2
- package/src/components/SearchFilterGroup/SearchFilterGroup.vue +1 -1
- package/src/templates/edu/PageEduNewsDetail.vue +1 -1
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</template>
|
|
13
13
|
<script lang="ts">
|
|
14
14
|
import { defineComponent } from 'vue'
|
|
15
|
-
import _throttle from 'lodash/throttle'
|
|
15
|
+
import _throttle from 'lodash/throttle.js'
|
|
16
16
|
import type { DebouncedFunc } from 'lodash'
|
|
17
17
|
import BaseButton from './../BaseButton/BaseButton.vue'
|
|
18
18
|
import IconDropdown from './../Icons/IconDropdown.vue'
|
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
<script lang="ts">
|
|
165
165
|
import { defineComponent } from 'vue'
|
|
166
166
|
import type { PropType } from 'vue'
|
|
167
|
-
import _throttle from 'lodash/throttle'
|
|
167
|
+
import _throttle from 'lodash/throttle.js'
|
|
168
168
|
import type { DebouncedFunc } from 'lodash'
|
|
169
169
|
import type { Slide } from './MissionDetailHighlightsCarouselItem.vue'
|
|
170
170
|
// @ts-ignore
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
|
|
55
55
|
<script lang="ts">
|
|
56
56
|
import { defineComponent } from 'vue'
|
|
57
|
-
import _map from 'lodash/map'
|
|
58
|
-
import _without from 'lodash/without'
|
|
57
|
+
import _map from 'lodash/map.js'
|
|
58
|
+
import _without from 'lodash/without.js'
|
|
59
59
|
import NavLinkList from './../NavLinkList/NavLinkList.vue'
|
|
60
60
|
import NavHighlight from './../NavHighlight/NavHighlight.vue'
|
|
61
61
|
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
|
|
65
65
|
<script lang="ts">
|
|
66
66
|
import { defineComponent } from 'vue'
|
|
67
|
-
import _map from 'lodash/map'
|
|
68
|
-
import _without from 'lodash/without'
|
|
67
|
+
import _map from 'lodash/map.js'
|
|
68
|
+
import _without from 'lodash/without.js'
|
|
69
69
|
|
|
70
70
|
import NavLinkList from './../NavLinkList/NavLinkList.vue'
|
|
71
71
|
import NavSocial from './../NavSocial/NavSocial.vue'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import { computed } from 'vue'
|
|
3
|
-
import isEmpty from 'lodash/isEmpty'
|
|
3
|
+
import isEmpty from 'lodash/isEmpty.js'
|
|
4
4
|
import type { StreamfieldBlockData } from '../../components/BlockStreamfield/BlockStreamfield.vue'
|
|
5
5
|
import type {
|
|
6
6
|
ImageObject,
|