created(){
this.$store.commit('SET_LOADING', true);
const loadData = async () => {
const market = this.$store.dispatch('getMarketData');
await this.$store.dispatch('getCoins');
await this.$store.dispatch('getQuote', 'BTC');
await market;
return;
}
loadData().then(() => {
this.$store.commit('SET_LOADING', false);
});
},