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'
            //    }
            //}
        },    

  

 

posted @ 2019-08-01 16:24  hao_1234_1234  阅读(138)  评论(0编辑  收藏  举报