@import "../style/lines.scss" 导致background: url()路径无效问题

解决方案是在webpack 中的vue.config.js中配置

 
configureWebpack: config => {
    let obj = {};
    obj.resolve = {
      alias: {
        'img': '@/assets/img',
      }
    };
    return obj
}
然后在lines.scss中如下使用

.L-arrows{
            width: 10px;
            height: 19px;
            background: url("~img/arrows.png") no-repeat center;
            background-size: cover;
            overflow: hidden;
            margin: 0px 10px 0px 20px;
}
方法二:

<div class="test_img"></div>
 
<style scoped lang="scss">
$img:"../assets/img";
@import "./style/test.scss";
</style>
在 test.scss中   代码如下

.test_img{
    width: 100%;
    height: 200px;
    background: url('#{$img}/alipay.png') no-repeat center;
    background-size: cover;
}

————————————————
版权声明:本文为CSDN博主「前端抠脚」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_40404336/article/details/88415571

Logo

前往低代码交流专区

更多推荐