rou

Results 2 issues of rou

vue项目。当开启CSS sourceMap时,没有使用postcss-px2rem时,chrome中查看Hello.vue的样式,样式的源的名称会显示为:`Hello.vue? [sm]:18` 这样,但是在postcss.config.js里配置postcss-px2rem后,px转换成rem是可以,但是样式的源的名称会显示为这样: `:1` postcss.config.js配置如下: ```javascript module.exports = { plugins: { 'postcss-px2rem': { remUnit: 14 } } } ``` 不知道这是不是在设计之中。以及,可以优化么。

code fragment below is copy from [mustache](http://mustache.github.io/mustache.5.html) , but I can't get argument render in Lambdas. The console told me argument render is undefined. Is there something that i misunderstand?...