1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 18x 18x 18x 18x 18x 18x | <template> <b-form :id="id || null" inline> I <slot></slot> </b-form> </template>E <script> import bForm from './form.vue'; export default { components: [bForm], props: { id: { type: String, } } }; </script> |