【发布时间】:2021-08-02 19:39:51
【问题描述】:
不确定这是否是默认行为,但我正在尝试在 Vue 中构建一个组件并尝试添加 id 和 class 等属性,但在呈现的代码中不存在。
组件
<template>
<input type="text" name="hello" />
</template>
用法(命名为 md-input)
<md-input class="hello" />
<!-- this will render too wihtout the class attr -->
<input type="text" name="hello" />
【问题讨论】: