Vue 在IE浏览器下无法正常显示

1、安装插件

npm install babel-polyfill -d

2、在main.js 中引入文件

import 'babel-polyfill'

3、更改webpack.config.base.js 文件

entry: {
	app:  ['babel-polyfill', './src/main.js']
}

// 配置 loader里保证将所有的ES6语法都编译成ES5的
{
	test: /\.js$/,
	loader: 'babel-loader',
	include: [
			resolve('src'),
			resolve(''test),
			resolve('mock')
		]
}

你可能感兴趣的:(VUE)