Skip to content

Commit 77761f2

Browse files
author
messenjer
committed
fix: missing import components BFormCheckbox, BFormGroup, ...
1 parent 85e5c1e commit 77761f2

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

src/components/BCard/BCardBody.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@
1313

1414
<script lang="ts">
1515
import {computed, defineComponent, PropType} from 'vue'
16+
import BCardTitle from './BCardTitle.vue'
17+
import BCardSubTitle from './BCardSubTitle.vue'
1618
import {ColorVariant} from '../../types'
1719
1820
export default defineComponent({
1921
name: 'BCardBody',
22+
components: {BCardTitle, BCardSubTitle},
2023
props: {
2124
bodyBgVariant: {type: String as PropType<ColorVariant>, required: false},
2225
bodyClass: {type: [Array, Object, String], required: false},

src/components/BFormCheckbox/BFormCheckboxGroup.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
<script lang="ts">
2222
import {computed, defineComponent, PropType} from 'vue'
23+
import BFormCheckbox from './BFormCheckbox.vue'
2324
import {ColorVariant, Size} from '../../types'
2425
import useId from '../../composables/useId'
2526
import {
@@ -32,6 +33,7 @@ import {
3233
3334
export default defineComponent({
3435
name: 'BFormCheckboxGroup',
36+
components: {BFormCheckbox},
3537
props: {
3638
modelValue: {type: Array, default: () => []},
3739
ariaInvalid: {type: [Boolean, String], default: null},

src/components/BFormRadio/BFormRadioGroup.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
<script lang="ts">
2222
import {computed, defineComponent, PropType} from 'vue'
23+
import BFormRadio from './BFormRadio.vue'
2324
import {ColorVariant, Size} from '../../types'
2425
import {
2526
bindGroupProps,
@@ -32,6 +33,7 @@ import useId from '../../composables/useId'
3233
3334
export default defineComponent({
3435
name: 'BFormRadioGroup',
36+
components: {BFormRadio},
3537
props: {
3638
modelValue: {type: [String, Boolean, Array, Object, Number], default: ''},
3739
ariaInvalid: {type: [Boolean, String], default: null},

0 commit comments

Comments
 (0)