[Vuejs]-Vue.js lifecycle events and where to start loading store properties (Vue.observable)

0👍

I modified my store for each of the two properties to change them to promises (instead of the result). Anywhere I needed the values in views, I now await the values.

This allows the UI to load quickly and only wait where needed.

Leave a comment