vue 动态背景图

data(){
        return{
            // 动态背景图
            note: {
            backgroundImage: "url(" + require("../assets/logo.png") + ") ",
            backgroundPosition: "center center",
            backgroundRepeat: "no-repeat",
            backgroundSize: "100% 100%",
            },
        }
    },

你可能感兴趣的:(vue 动态背景图)