@@ -16,13 +16,13 @@ export const props = {
16
16
prepend : {
17
17
type : String
18
18
} ,
19
- prependHTML : {
19
+ prependHtml : {
20
20
type : String
21
21
} ,
22
22
append : {
23
23
type : String
24
24
} ,
25
- appendHTML : {
25
+ appendHtml : {
26
26
type : String
27
27
} ,
28
28
tag : {
@@ -43,12 +43,12 @@ export const BInputGroup = /*#__PURE__*/ Vue.extend({
43
43
const childNodes = [ ]
44
44
45
45
// Prepend prop/slot
46
- if ( props . prepend || props . prependHTML || hasNormalizedSlot ( 'prepend' , $scopedSlots , $slots ) ) {
46
+ if ( props . prepend || props . prependHtml || hasNormalizedSlot ( 'prepend' , $scopedSlots , $slots ) ) {
47
47
childNodes . push (
48
48
h ( BInputGroupPrepend , [
49
49
// Prop
50
- props . prepend || props . prependHTML
51
- ? h ( BInputGroupText , { domProps : htmlOrText ( props . prependHTML , props . prepend ) } )
50
+ props . prepend || props . prependHtml
51
+ ? h ( BInputGroupText , { domProps : htmlOrText ( props . prependHtml , props . prepend ) } )
52
52
: h ( false ) ,
53
53
// Slot
54
54
normalizeSlot ( 'prepend' , { } , $scopedSlots , $slots ) || h ( false )
@@ -66,12 +66,12 @@ export const BInputGroup = /*#__PURE__*/ Vue.extend({
66
66
}
67
67
68
68
// Append prop
69
- if ( props . append || props . appendHTML || hasNormalizedSlot ( 'append' , $scopedSlots , $slots ) ) {
69
+ if ( props . append || props . appendHtml || hasNormalizedSlot ( 'append' , $scopedSlots , $slots ) ) {
70
70
childNodes . push (
71
71
h ( BInputGroupAppend , [
72
72
// prop
73
- props . append || props . appendHTML
74
- ? h ( BInputGroupText , { domProps : htmlOrText ( props . appendHTML , props . append ) } )
73
+ props . append || props . appendHtml
74
+ ? h ( BInputGroupText , { domProps : htmlOrText ( props . appendHtml , props . append ) } )
75
75
: h ( false ) ,
76
76
// Slot
77
77
normalizeSlot ( 'append' , { } , $scopedSlots , $slots ) || h ( false )
0 commit comments