File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <span :class =" ['tag ',labelVariant,labelType]" >
2
+ <span :class =" ['badge ',labelVariant,labelType]" >
3
3
<slot ></slot >
4
4
</span >
5
5
</template >
9
9
replace: true ,
10
10
computed: {
11
11
labelVariant () {
12
- return ! this .variant || this .variant === ` default` ? ` tag -default` : ` tag -${ this .variant } `
12
+ return ! this .variant || this .variant === ` default` ? ` badge -default` : ` badge -${ this .variant } `
13
13
},
14
14
labelType () {
15
15
return ! this .type ? ` ` : ` tag-${ this .type } `
Original file line number Diff line number Diff line change 19
19
:name =" name"
20
20
:placeholder =" placeholder"
21
21
:value =" value"
22
+ :rows =" rows"
22
23
@input =" onInput($event.target.value)"
23
24
ref =" input"
24
25
></textarea >
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import bFormRadio from './form-radio.vue'
18
18
import bFormInput from './form-input.vue'
19
19
import bFormSelect from './form-select.vue'
20
20
import bJumbotron from './jumbotron.vue'
21
- import bTags from './tags .vue'
21
+ import bBadge from './badge .vue'
22
22
import bListGroup from './list-group.vue'
23
23
import bListGroupItem from './list-group-item.vue'
24
24
import bMedia from './media.vue'
@@ -53,7 +53,7 @@ export {
53
53
bFormInput ,
54
54
bFormSelect ,
55
55
bJumbotron ,
56
- bTags ,
56
+ bBadge ,
57
57
bMedia ,
58
58
bModal ,
59
59
bNavbar ,
You can’t perform that action at this time.
0 commit comments