Vue.js 内联样式绑定style

html

<div class="Menu" v-bind:style="{height:clientHeight}">
 </div>

js

    data(){
        return{
            clientHeight:'', 
        }
    },
    mounted(){
        var h= document.documentElement.clientHeight+'px'
        this.clientHeight=h
    },
动态改变元素高度

猜你喜欢

转载自www.cnblogs.com/xxflz/p/9981356.html