[Vuejs]-Same props for multiple Vue components

0👍

I think v-bind="$attrs" should solve your problem. You can set default `props’ in your "core" component. Then, just override what you want

See the docs https://v3.vuejs.org/guide/component-attrs.html#disabling-attribute-inheritance

Leave a comment