ustbhuangyi / vue-sell

:rice: Vue.js高仿饿了么外卖App课程源码 http://coding.imooc.com/class/74.html
3.46k stars 1.36k forks source link

less mixin bg-image problem #42

Closed whatwg6 closed 7 years ago

whatwg6 commented 7 years ago

less syntax

.bg-image('./img/brand'); //error This relative module was not found:* ../../../static/css/img/brand@2x.png 

mixin.less

.bg-image (@url) {
  background-image: url("@{url}@2x.png");
}

image i modify the path

.bg-image('../../src/components/header/img/brand');// success

the forum answer can slove this problem ,but why

.bg-image('./img/brand');// success

mixin.less

.bg-image (@url) {
  background-image: ~"url(@{url}@2x.png)";
}