VUE在Return中定义变量,放在方法中使用

Return中定义CSS变量

在Return 中定义一个比变量

 data () {
    return {
        '--mg_top1':'3vh',
      },
    }

在methods方法使用

this.$el.style.setProperty('--mg_top1', '3.6vh')

 在CSS中使用

 .mg_top{
     margin-top: var(--mg_top1)!important;
 }

 

posted @ 2023-04-26 10:02  幽冥狂_七  阅读(16)  评论(0编辑  收藏  举报