gpt4 book ai didi

javascript - vue.js 组件内联样式串联

转载 作者:行者123 更新时间:2023-12-01 01:32:01 25 4
gpt4 key购买 nike

我被 vue.js 组件内联样式串联所困扰。我的代码如下:

components: {
'twitter-item': {
props: ['procolors'],
template: '\
<div class="color-quadrat" v-bind:data-id="procolors.id" v-bind:style="background-color: #{procolors.user.profile_background_color}">\
<p>{{procolors.user.profile_background_color}}</p>\
</div>\
'
}
}

我正在尝试将 procolors.user.profile_background_color 作为内联背景颜色。特殊之处在于 procolors.user.profile_background_color 中的值没有 #。所以我必须将其添加到模板中。

我尝试了网络上的各种建议,但没有一个对我有用。

任何帮助表示赞赏!

最佳答案

使用这个,它利用了vue的style object syntax :

:style="{backgroundColor: '#' + procolors.user.profile_background_color}"

关于javascript - vue.js 组件内联样式串联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53178866/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com