diff --git a/src/components/BotCard.vue b/src/components/BotCard.vue index 73a93bb..f8cfd28 100644 --- a/src/components/BotCard.vue +++ b/src/components/BotCard.vue @@ -32,8 +32,12 @@ export default { status: {}, }; }, - mounted() { - this.fetchData(); + async mounted() { + try { + this.fetchData(); + } catch (error) { + console.log(error); + } }, methods: { fetchData: function() {