Untitled
v-bind
<template>
<div :style="style">111</div>
</template>
<script setup lang="ts">
const style:object = {
color:'red'
}
</script>
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
上次更新: 2024/08/14, 04:14:33
v-bind
<template>
<div :style="style">111</div>
</template>
<script setup lang="ts">
const style:object = {
color:'red'
}
</script>