Отключение наследования атрибутов
Vue.component('my-component', {
inheritAttrs: false,
// ...
}){
required: true,
placeholder: 'Введите имя пользователя'
}Vue.component('base-input', {
inheritAttrs: false,
props: ['label', 'value'],
template: `
<label>
{{ label }}
<input
v-bind="$attrs"
v-bind:value="value"
v-on:input="$emit('input', $event.target.value)"
>
</label>
`
})Last updated