Fix vuex requires a Promise polyfill in this browser
When you start your Vue project in Safari or IE, you may face with:
[vuex] vuex requires a Promise polyfill in this browser
To solve it do next:
npm install --save-dev babel-polyfill
In main.js
:
import 'babel-polyfill'