File tree Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 2
2
<basic-icon
3
3
v-if =" size === 'sm'"
4
4
icon =" circle-fill"
5
- :icon- color =" color"
5
+ :color =" color"
6
6
class =" align-self-center m-2"
7
7
style =" font-size : .8em ;"
8
8
/>
9
9
<basic-icon
10
10
v-else
11
11
:icon =" icon"
12
- :icon- color =" color"
12
+ :color =" color"
13
13
class =" align-self-center m-2"
14
14
:style =" `font-size: ${iconSize}px;`"
15
15
/>
Original file line number Diff line number Diff line change 2
2
<i
3
3
v-if =" icon"
4
4
class =" d-flex align-items-center"
5
- :class =" iconColor ? 'text-' + iconColor : ''"
5
+ :class =" color ? 'text-' + color : ''"
6
6
>
7
7
<svg
8
8
class =" svg-icon"
@@ -25,7 +25,7 @@ export default {
25
25
... util .props .string ,
26
26
required: true
27
27
},
28
- iconColor : util .props .textColor ,
28
+ color : util .props .textColor ,
29
29
},
30
30
computed: {
31
31
iconName () {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default {
13
13
name: " BasicInfo" ,
14
14
props: {
15
15
info: util .props .String ,
16
- infoColor : util .props .textColor ,
16
+ color : util .props .textColor ,
17
17
}
18
18
};
19
19
</script >
Original file line number Diff line number Diff line change 4
4
<b-icon
5
5
class =" me-2"
6
6
:icon =" icon"
7
- :icon- color =" iconColor"
7
+ :color =" iconColor"
8
8
/>
9
9
<strong
10
10
v-if =" strong"
21
21
</font >
22
22
<b-info
23
23
:info =" info"
24
- :info- color =" infoColor"
24
+ :color =" infoColor"
25
25
/>
26
26
</div >
27
27
</template >
Original file line number Diff line number Diff line change 105
105
:checked =" isSelected(row)"
106
106
@input =" input($event, row)"
107
107
/>
108
- <base -icon
108
+ <basic -icon
109
109
v-else-if =" selectStatus === enumSelect.check"
110
110
icon =" check-circle-fill"
111
111
class =" text-primary"
@@ -181,7 +181,6 @@ import GridHelper from './Basic/grid-helper'
181
181
import GridPagination from ' ./Basic/grid-pagination'
182
182
import GridProperties from " ./tools/Properties/grid-properties"
183
183
184
- import BaseIcon from " @/components/basic/basic-icon.vue"
185
184
import BCheck from " @/components/form/Check/b-check.vue" ;
186
185
export default {
187
186
name: " BGridView" ,
@@ -199,7 +198,6 @@ export default {
199
198
GridHelper,
200
199
GridProperties,
201
200
GridPagination,
202
- BaseIcon,
203
201
BCheck,
204
202
},
205
203
mixins: [ util .mixins .grid .select , ],
You can’t perform that action at this time.
0 commit comments