0 votes
in VueJS by
Do I need promise for vuex?

1 Answer

0 votes
by

Yes, vuex requires Promise. If your supporting browsers do not implement Promise (e.g. IE), you can use a polyfill library, such as es6-promise using npm or yarn.

npm install es6-promise --save # NPM
yarn add es6-promise # Yarn

After that import into anywhere in your application,

import 'es6-promise/auto'

Related questions

0 votes
asked Sep 9, 2023 in VueJS by AdilsonLima
0 votes
asked Sep 9, 2023 in VueJS by DavidAnderson
...