非 Prop 的 Attribute
F12
1.当组件返回单个根节点时,非 prop attribute 将自动添加到根节点的 attribute 中 2. 通过将 inheritAttrs 选项设置为 false,你可以访问组件的 $attrs property, 该 property 包括组件 props 和 emits property 中未包含的所有属性 (例如,class、style、v-on 监听器等)。
<div class="date-picker"> <input type="datetime" data-status="activated" author="Tom"/> </div>