wxs不支持es6写法吗
let foo = “‘hello world’ from comm.wxs”;
const bar = function (d) {
return d;
}
module.exports ={
foo:foo,bar:bar
}
然后报错
1 | let foo = “‘hello world’ from comm.wxs”;
| ^
2 | const bar = function (d) {
3 | return d;
4 | }
真的不支持es6吗?