2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00

refactor: use explicit file extensions in imports (#1587)

This commit is contained in:
Jeff Sagal
2022-02-18 14:24:01 -08:00
committed by GitHub
parent ba4104117a
commit 3565bc303a
4 changed files with 13 additions and 13 deletions
+7 -7
View File
@@ -136,13 +136,13 @@
</template>
<script>
import pointerScroll from '../mixins/pointerScroll'
import typeAheadPointer from '../mixins/typeAheadPointer'
import ajax from '../mixins/ajax'
import childComponents from './childComponents'
import appendToBody from '../directives/appendToBody'
import sortAndStringify from '../utility/sortAndStringify'
import uniqueId from '../utility/uniqueId'
import pointerScroll from '../mixins/pointerScroll.js'
import typeAheadPointer from '../mixins/typeAheadPointer.js'
import ajax from '../mixins/ajax.js'
import childComponents from './childComponents.js'
import appendToBody from '../directives/appendToBody.js'
import sortAndStringify from '../utility/sortAndStringify.js'
import uniqueId from '../utility/uniqueId.js'
/**
* @name VueSelect
+2 -2
View File
@@ -1,5 +1,5 @@
import Deselect from './Deselect'
import OpenIndicator from './OpenIndicator'
import Deselect from './Deselect.vue'
import OpenIndicator from './OpenIndicator.vue'
export default {
Deselect,
+1 -1
View File
@@ -1,5 +1,5 @@
import VueSelect from './components/Select.vue'
import mixins from './mixins/index'
import mixins from './mixins/index.js'
export default VueSelect
export { VueSelect, mixins }
+3 -3
View File
@@ -1,5 +1,5 @@
import ajax from './ajax'
import pointer from './typeAheadPointer'
import pointerScroll from './pointerScroll'
import ajax from './ajax.js'
import pointer from './typeAheadPointer.js'
import pointerScroll from './pointerScroll.js'
export default { ajax, pointer, pointerScroll }