1. 程式人生 > >vue.js div 設定背景圖片

vue.js div 設定背景圖片

佈局:

<div class="middle" :style="backgroundDiv">
    <img src="./images/[email protected]" style="width: auto; height: 40px;">
</div>

資料:

data() {

    return {
        backgroundDiv: {
            backgroundImage: 'url(' + require('./images/[email protected]') + ')'
        }
    }
}

樣式:

.middle {
    height: 445px;
    width: 300px;
    background: no-repeat center top;
    background-size: contain;
}