mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-22 10:30:34 +03:00
refactor: use explicit file extensions in imports (#1587)
This commit is contained in:
@@ -136,13 +136,13 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import pointerScroll from '../mixins/pointerScroll'
|
import pointerScroll from '../mixins/pointerScroll.js'
|
||||||
import typeAheadPointer from '../mixins/typeAheadPointer'
|
import typeAheadPointer from '../mixins/typeAheadPointer.js'
|
||||||
import ajax from '../mixins/ajax'
|
import ajax from '../mixins/ajax.js'
|
||||||
import childComponents from './childComponents'
|
import childComponents from './childComponents.js'
|
||||||
import appendToBody from '../directives/appendToBody'
|
import appendToBody from '../directives/appendToBody.js'
|
||||||
import sortAndStringify from '../utility/sortAndStringify'
|
import sortAndStringify from '../utility/sortAndStringify.js'
|
||||||
import uniqueId from '../utility/uniqueId'
|
import uniqueId from '../utility/uniqueId.js'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name VueSelect
|
* @name VueSelect
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import Deselect from './Deselect'
|
import Deselect from './Deselect.vue'
|
||||||
import OpenIndicator from './OpenIndicator'
|
import OpenIndicator from './OpenIndicator.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
Deselect,
|
Deselect,
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
import VueSelect from './components/Select.vue'
|
import VueSelect from './components/Select.vue'
|
||||||
import mixins from './mixins/index'
|
import mixins from './mixins/index.js'
|
||||||
|
|
||||||
export default VueSelect
|
export default VueSelect
|
||||||
export { VueSelect, mixins }
|
export { VueSelect, mixins }
|
||||||
|
|||||||
+3
-3
@@ -1,5 +1,5 @@
|
|||||||
import ajax from './ajax'
|
import ajax from './ajax.js'
|
||||||
import pointer from './typeAheadPointer'
|
import pointer from './typeAheadPointer.js'
|
||||||
import pointerScroll from './pointerScroll'
|
import pointerScroll from './pointerScroll.js'
|
||||||
|
|
||||||
export default { ajax, pointer, pointerScroll }
|
export default { ajax, pointer, pointerScroll }
|
||||||
|
|||||||
Reference in New Issue
Block a user