时间:2022-06-18 12:38:19 | 栏目:vue | 点击:次
在vue定义的组件当中,直接设置行内style无法显示背景,里面使用config.resolve.alias当中设置的 @等路径符也无法识别
<el-card style="backgroundImage:`url(`图片地址`)" class="box-card" shadow="hover">
在将图片资源在vue 的 data当中解析再绑定到页面
<el-card :style="{backgroundImage:`url(${img})`}" class="box-card" shadow="hover"> // data当中定义 组件需要在函数当中返回数据 保证数据的作用域 data: function(){ return { weatherData:{}, img: require('@assets/image/sunny_n.jpg') } },
<template> <div class="index_background" > </div> </template> <style> .index_background{ background: url('~@/../static/images/login-bg.png') center top no-repeat;} </style>