# prefer-no-dom-props

## 规则说明

dom元素，不建议有某些属性

## 级别

`warn`

## 选项说明

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

- **component**：组件名称，必填
- **attr**：不推荐的属性，必填
- **perfer**：推荐属性，必填

## 示例配置

```json
["warn", [
    { "component": "iframe", "attr": "href", "perfer": "src" },
]]
```

✅正确示例：

```vue
<template>
    <iframe src="https://www.baidu.com"></iframe>
</template>
```

❌错误示例：

```vue
<template>
    <iframe href="https://www.baidu.com"></iframe>
</template>
```


