css 设置变量,通过refs的style.setProperty直接设置变量的值

Posted 晚星@

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 设置变量,通过refs的style.setProperty直接设置变量的值相关的知识,希望对你有一定的参考价值。

css 设置变量,通过refs的style.setProperty直接设置变量的值


<template>
  <div class="ScaleBox" ref="ScaleBox" :style="
      height: height + 'px',
    ">
    <slot></slot>
  </div>
</template>
 
<script>
export default 
  name: "ScaleBox",
  props: ,
  data() 
    return 
      height: 200,
    ;
  ,
  mounted() 
    this.$refs.ScaleBox.style.setProperty("--scale", '200px');
  ,
  methods: 
  ,
;
</script>
 
<style >
.ScaleBox 
  width: var(--scale);
  background: #000;

</style>

以上是关于css 设置变量,通过refs的style.setProperty直接设置变量的值的主要内容,如果未能解决你的问题,请参考以下文章

css 设置变量,通过refs的style.setProperty直接设置变量的值

C# - 通过 REF 从异步方法回调更新变量 - WebClient 类

通过引用取消设置 PHP

有没有办法通过引用比较 2 个 ref 结构?

如何将scss变量设置为css变量使用javascript

Vue.js中ref ($refs)用法举例总结及应注意的坑