Skip to content

Commit 81b6275

Browse files
committed
refactor(BCardImg): sort props
1 parent eaa8194 commit 81b6275

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/bootstrap-vue-3/src/components/BCard/BCardImg.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ import {computed, toRef} from 'vue'
1111
1212
interface BCardImgProps {
1313
alt?: string
14+
blank?: Booleanish
15+
blankColor?: string
1416
bottom?: Booleanish
15-
end?: Booleanish
17+
lazy?: Booleanish
1618
height?: number | string
1719
left?: Booleanish
20+
start?: Booleanish
1821
right?: Booleanish
22+
end?: Booleanish
23+
sizes?: string | Array<string>
1924
src?: string
20-
lazy?: Booleanish
21-
start?: Booleanish
25+
srcset?: string | Array<string>
2226
top?: Booleanish
2327
width?: number | string
24-
blank?: Booleanish
25-
blankColor?: string
26-
sizes?: string | Array<string>
27-
srcset?: string | Array<string>
2828
}
2929
3030
const props = withDefaults(defineProps<BCardImgProps>(), {

0 commit comments

Comments
 (0)