[Vuejs]-Problem using Firefox ESR 45.4.0 and Vuejs 2

1👍

Support for Object.values was introduced in Firefox 47.

Your browser is from 2015. That is hideously ancient in Internet terms. Upgrade it.

(If you really want to to get the Vue application to work, you’ll need to set up a Polyfill for Object.values. There is one linked from the MDN page I linked to above. It should also be available in core-js which can be used with Babel in the transpiling step of your build process.)

Leave a comment