test.less
@test: '';
.test {
color: @test;
}
通过
<link rel="stylesheet/less" href="./static/css/test.less">
注入到项目的index.html
后续在代码中注入变量
less.modifyVars({'@test':testValue})
如果注入变量是空字符串就会报错 SyntaxError: Cannot read properties of null('reading eval')
为什么less会从字符串读到null