Skip to content

Commit 54a0faf

Browse files
authored
Update form-select.js
1 parent 73e08a5 commit 54a0faf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/form-select/form-select.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import Vue from 'vue'
12
import idMixin from '../../mixins/id'
23
import formOptionsMixin from '../../mixins/form-options'
34
import formMixin from '../../mixins/form'
@@ -8,7 +9,7 @@ import { from as arrayFrom } from '../../utils/array'
89
import { htmlOrText } from '../../utils/html'
910

1011
// @vue/component
11-
export default {
12+
export default Vue.extend({
1213
name: 'BFormSelect',
1314
mixins: [idMixin, formMixin, formSizeMixin, formStateMixin, formCustomMixin, formOptionsMixin],
1415
model: {
@@ -126,4 +127,4 @@ export default {
126127
[$slots.first, options, $slots.default]
127128
)
128129
}
129-
}
130+
})

0 commit comments

Comments
 (0)