File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/components/form-spinbutton Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import {
17
17
CODE_UP ,
18
18
CODE_PAGEDOWN
19
19
} from '../../constants/key-codes'
20
+ import { SLOT_NAME_DECREMENT , SLOT_NAME_INCREMENT } from '../../constants/slots'
20
21
import { arrayIncludes , concat } from '../../utils/array'
21
22
import { attemptBlur , attemptFocus } from '../../utils/dom'
22
23
import { eventOnOff , stopEvent } from '../../utils/events'
@@ -493,7 +494,7 @@ export const BFormSpinbutton = /*#__PURE__*/ Vue.extend({
493
494
'inc' ,
494
495
'ArrowUp' ,
495
496
false ,
496
- 'increment'
497
+ SLOT_NAME_INCREMENT
497
498
)
498
499
const $decrement = makeButton (
499
500
this . stepDown ,
@@ -502,7 +503,7 @@ export const BFormSpinbutton = /*#__PURE__*/ Vue.extend({
502
503
'dec' ,
503
504
'ArrowDown' ,
504
505
false ,
505
- 'decrement'
506
+ SLOT_NAME_DECREMENT
506
507
)
507
508
508
509
let $hidden = h ( )
You can’t perform that action at this time.
0 commit comments