在webpack中開發,會遇到一大推問題,特別是babel6升級到babel7,要跟新一大推插件,而對於安裝babel的功能就是在webpack開發中,vue中可以是用ES6的新特性:vue
例如ES6中的面向對象編程方式:node
class Person{ static info = { name: "zs", age: 20} } console.log(Person.info)
對於這個,js是沒有的,可是在webpack中,默認只能處理一部分ES6的新語法,一些高級的ES6語法或者ES7語法,webpack是處理不了的;這時候就須要藉助與第三方的loader,來幫助webpack處理這些高級的語法, 當第三方loader把高級語法轉爲低級語法以後,會把結果交給webpack去打包到bundle.js。react
只能經過Babel能夠幫咱們將高級的語法轉換爲低級的語法:webpack
1.先安裝一下插件git
"devDependencies": { "@babel/core": "^7.4.5", "@babel/plugin-proposal-class-properties": "^7.4.4", "@babel/plugin-proposal-object-rest-spread": "^7.4.4", "@babel/plugin-transform-runtime": "^7.4.4", "@babel/preset-env": "^7.4.5", "@babel/preset-react": "^7.0.0", "@babel/runtime": "^7.4.5", "babel-loader": "^8.0.6" }
2.打開webpack 的配置文件,在module節點下的rules數組中,添加一個新的匹配規則:github
{test"/\.js$/, use :"babel-loader", exclude:/node_modules/}
{ "presets": ["@babel/preset-env", "@babel/preset-react"], "plugins": ["@babel/plugin-transform-runtime", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-class-properties"] }