setup() {
const rotate = ref<number>(0);
const color: string = "red";
const changeStatus = (): void => {
rotate.value = -90;
};
return {
rotate,
color,
};
},
<style>
.test {
color: v-bind(color);
transform: rotateX(calc(v-bind(rotate) * 1deg))
}
</style>
原文:https://www.cnblogs.com/anans/p/14984078.html