当前位置:   article > 正文

Vue3动态CSS

Vue3动态CSS

动态css值

<template>
  <div class="div">
    动态css
  </div>
</template>

<script setup lang=ts>
import {ref} from 'vue'

const style = ref('blue')
</script>

<style scoped>
.div{
  color: v-bind(style)
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

在这里插入图片描述

动态css对象

<template>
  <div class="div">
    动态css
  </div>
</template>

<script setup lang=ts>
import {ref} from 'vue'

const style = ref({
  color:'blue'
})
</script>

<style scoped>
.div{
  color: v-bind('style.color')
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

在这里插入图片描述

module模式

  • 单个样式
<template>
  <div :class="$style.div">
    动态css
  </div>
</template>

<script setup lang=ts>
import {ref} from 'vue'
</script>

<style module>
.div{
  color: red
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 多个样式
<template>
  <div :class="[$style.div,$style.border]">
    动态css
  </div>
</template>

<script setup lang=ts>
import {ref} from 'vue'
</script>

<style module>
.div{
  color: red
}
.border{
  border: 1px solid #ccc
}

</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 自定义名字
<template>
  <div :class="[zs.div,zs.border]">
    动态css
  </div>
</template>

<script setup lang=ts>
import {ref} from 'vue'
</script>

<style module="zs">
.div{
  color: red
}
.border{
  border: 1px solid #ccc
}

</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

hooks使用

const css = useCssModule('zs');

console.log(css);
  • 1
  • 2
  • 3

在这里插入图片描述
使用场景render或写txs使用

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码创作者/article/detail/60385
推荐阅读
相关标签
  

闽ICP备14008679号