vue.js 样式绑定

简单用法
<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'
            //    }
            //}
        },    

  

原文地址:https://www.cnblogs.com/hao-1234-1234/p/11283385.html