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
上次更新: 2025/06/23, 01:53:19
v-bind
<template>
<div :style="style">111</div>
</template>
<script setup lang="ts">
const style:object = {
color:'red'
}
</script>