<template #header> <div class="user-block"> <img class="img-circle" :src="'https://wpimg.wallstcn.com/57ed425a-c71e-4201-9428-68760c0537c4.jpg' + avatarPrefix"> <span class="username text-muted">设备一</span> <span class="description">教学理论设备</span> </div> <div > <span class="el-icon-setting" style="font-size: 25px; color: rgba(18, 21, 211, 0.829);" @click="update" ></span> </div> </template> 修改el-icon-setting 位置在文字右侧如何修改
时间: 2024-04-04 16:35:03 浏览: 146
你可以将 `el-icon-setting` 与文字放在同一个 `div` 中,并将该 `div` 的样式设置为 `display: flex; justify-content: space-between; align-items: center;`,这样它们就可以水平排列,而且 `el-icon-setting` 就会在文字的右侧了。具体地,你可以修改模板代码如下:
```
<template #header>
<div class="user-block">
<div style="display: flex; justify-content: space-between; align-items: center;">
<div>
<img class="img-circle" :src="'https://wpimg.wallstcn.com/57ed425a-c71e-4201-9428-68760c0537c4.jpg' + avatarPrefix">
<span class="username text-muted">设备一</span>
<span class="description">教学理论设备</span>
</div>
<span class="el-icon-setting" style="font-size: 25px; color: rgba(18, 21, 211, 0.829);" @click="update"></span>
</div>
</div>
</template>
```
这样修改后,`el-icon-setting` 就会在文字的右侧了。
阅读全文