以下示例是关于Html中包含对css样式的支持用法的示例代码,想了解对css样式的支持的具体用法?对css样式的支持怎么用?对css样式的支持使用的例子?那么可以参考以下相关源代码片段来学习它的具体使用方法。
<HelloWorld color="red" bg="green" />
<template>
<div :style="cssProps">KUK</div>
</template>
<script>
export default {
name: 'HelloWorld',
props: ['color', 'bg'],
computed: {
cssProps() {
return {
'--color': this.color,
'--bg': this.bg,
};
},
},
};
</script>
<style scoped>
div {
color: var(--color);
background: var(--bg);
}
</style>
本文地址:https://www.itbaoku.cn/snippets/785399.html