Vue3 使用框架插入带样式的 div 元素
<template>
<div :style="{ backgroundColor: bgColor.value, borderRadius: '30px', height: '100%' }" />
</template>
<script setup>
import { ref } from 'vue';
const bgColor = ref('blue');
</script>
原文地址: https://www.cveoy.top/t/topic/mCYN 著作权归作者所有。请勿转载和采集!