Browse Source

chore(babel): 支持 optional chaining 和 nullish coalescing

WuXinyu 6 years ago
parent
commit
e86b072255
1 changed files with 4 additions and 0 deletions
  1. 4 0
      babel.config.js

+ 4 - 0
babel.config.js

@@ -1,5 +1,9 @@
 module.exports = {
   presets: [
     '@vue/cli-plugin-babel/preset'
+  ],
+  plugins: [
+    '@babel/plugin-proposal-optional-chaining',
+    '@babel/plugin-proposal-nullish-coalescing-operator'
   ]
 }