1
2
3
4
5
6
7
8
9
10
11
| module.exports = {
| presets: ["@vue/cli-plugin-babel/preset"],
| plugins: ["@babel/plugin-proposal-optional-chaining"],
| compact: false,
| plugins:[
| // null判断运算符支持 ??
| // '@babel/plugin-proposal-nullish-coalescing-operator',
| // 链判断运算符支持 ?.
| '@babel/plugin-proposal-optional-chaining'
| ]
| };
|
|