vue <rel>标签
时间: 2023-12-17 16:05:19 浏览: 191
基于vue 的标签组件
在 Vue 中,<rel> 标签并不是 Vue 自带的标签,也不是 HTML 或者 HTML5 中的标签。可能是你打错了标签名字。
如果你想在 Vue 中使用 HTML 或 HTML5 中的标签,可以直接在 Vue 模板中使用。例如,如果你想使用 HTML5 中的 <video> 标签,可以这样写:
```html
<template>
<div>
<video src="your_video_src"></video>
</div>
</template>
```
如果你想使用其他第三方组件库中的标签,可以先安装该组件库,并在 Vue 组件中引入该组件库,然后就可以使用该组件库中的标签了。例如,在使用 Element UI 组件库时,可以这样写:
```html
<template>
<div>
<el-button type="primary">Primary</el-button>
</div>
</template>
<script>
import { ElButton } from 'element-ui'
export default {
components: {
ElButton
}
}
</script>
```
阅读全文