v-bind-css.uvue 306 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<template>
  <view>
    <view class="rect-bind"></view>
  </view>
</template>

<script>
  export default {
    data() {
      return {
        classBindColor: "#008000"
      }
    }
  }
</script>

<style scoped>
  .rect-bind {
    background-color: v-bind(classBindColor);
    padding: 100px;
  }
</style>