欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue.js 样式绑定

程序员文章站 2022-04-28 22:58:43
...

 

 

简单用法
<div v-bind:height="bindStyle">

复杂用法
<div v-bind:style="bindStyle">

 </div>

       data:{
           tabsHeight:100,
       }
        computed: {
            //bindStyle: function () {
            //    return {
            //        'height': '' + this.tabsHeight + 'px', //这里写你需要的任何样式
            //        'overflowY': 'auto',
            //        'loverflowX': 'hidden'
            //    }
            //}
        },