vuev-text-field设置标签颜色

vuev-text-field设置标签颜色,第1张

1、首先打开vuev-text-field。

2、其次点击开始,并找到标签设置

3、最后在界面中找到颜色即可完成vuev-text-field设置标签颜色。

for循环中动态设置页面的图标或者字体颜色与循环中且套循环 

:style="{'color':items.color}"

案例代码:

html中

<div class="allFunction" v-for="(item,index ) in checksMes">

<div class="titMes" data-index="dictionaries">

{{item.menu.menuTitle}}

</div>

<div id="addBtn" v-for="(items,indexs ) in item.funcList" >

<Icon class="iconCommon" :style="{'color':items.color}" :type="items.type"></Icon><span>{{items.funcName}}</span><span class="triangle"></span><Icon class="imgIcon" type="checkmark-round"></Icon>

</div>

</div>

js中

<script type="javascript">

export default {

  data () { 

 mainMessage:[ //原始数据类型

{

"menu": {

"id": 2,

"menuId": "test1",

"menuParentId": "test",

"menuPath": null,

"menuIcon": null,

"checks":"0",

"menuTitle": "测试菜单1",

"menuPage": null,

"menuValid": null,

"menuOrder": null,

"menuCreateTime": null,

"menuUpdateTime": null

},

"funcList": [

{

"id": null,

"funcId": "deleteBtn",

"funcName": "删除",

"type":"trash-a",

"color":"red",

"funcDesc": "1"

}

]

}

]

}

}

</script>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/7916295.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-11
下一篇 2023-04-11

发表评论

登录后才能评论

评论列表(0条)

保存