# prefer-required-dom-props

## 规则说明

dom元素建议有某些属性

## 级别

`warn`

## 选项说明

该规则接受一个数组，数组中的每个元素可以是：

- **component**：组件名称，必填
- **attr**：属性，必填，可以是字符串或数组

## 示例配置

```json
["warn", [
    { "component": "a-table", "attr": "loading" },
    { "component": "Table", "attr": ["loading", "columns"] }
]]
```

✅正确示例：

```vue
<template>
    <a-table loading></a-table>
</template>
```

❌错误示例：

```vue
<template>
    <a-table></a-table>
</template>
```


