vue3中css使用script中定义的变量

代码

<template>
  <div class="box">haha</div>
</template>

<script setup lang="ts">
const boxWidth = '500px'
</script>

<style lang="scss">
.box {
  width: v-bind(boxWidth);
  height: 200px;
  background-color: red;
}
</style>

效果

vue3中css使用script中定义的变量_第1张图片

你可能感兴趣的:(Vue,vue3,css,script,变量)