使用Card卡片组件时,需要改head颜色
解决办法
<script lang="ts" setup>
import { ref, CSSProperties, computed } from 'vue';
const headStyle = computed((): CSSProperties => ({ background: 'rgba(0, 0, 0, 0.02)' }));
</script>
使用Card卡片组件时,需要改head颜色
解决办法
<script lang="ts" setup>
import { ref, CSSProperties, computed } from 'vue';
const headStyle = computed((): CSSProperties => ({ background: 'rgba(0, 0, 0, 0.02)' }));
</script>