Vue入門(13)webpack下

1.解析es6

下載

npm i babel-core babel-loader babel-preset-env babel plugin-transform-runtime -S

配置

//處理es6,7,8
{   
    test: /\.js$/,
    loader : 'babel-loader',
    exclude:/node_modules/,//排除掉node_modules
    options:{
		presets:['env'],//處理關鍵字
		plugins:['transform-runtime'],//處理函數
	}
}

2.和vue有關的

下載

npm i [email protected] [email protected] -S

配置

//處理vue
{   
    test: /\.vue$/,
    loader : 'vue-loader',
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章