The vue project shows blank in IE browser because the js file is not loaded and the babel-polyfill needs to be introduced. The project built with vue scaffolding does not introduce this tool.
Introduce method:
Open, add: "babel-polyfill" : "^6.23.0" in dependencies
Then re-npm install
import in file: import "babel-polyfill"
In this way, the IE browser will display normally.
The above article quickly solves the problem of the blank space in the Vue project in IE browser is all the content I have shared with you. I hope you can give you a reference and I hope you can support me more.