templates/bs_component.vue.hbs (13 lines of code) (raw):

<script> import { {{bootstrapVueComponentName}} } from 'bootstrap-vue'; export default { name: 'Gl{{pascalCase name}}', components: { {{bootstrapVueComponentName}}, }, inheritAttrs: false, }; </script> <template> <{{kebabCase bootstrapVueComponentName}} v-bind="$attrs" v-on="$listeners"></{{kebabCase bootstrapVueComponentName}}> </template>