Vue 禁用 Attribute 继承

组件的 inheritAttrs 属性,指定了组件根元素是否接收来自父元素设置的 Attributes

Vue.component('my-component', {
  inheritAttrs: false,
  // ...
})

eg: