muita coisa

This commit is contained in:
Gabriel Pastori
2023-11-05 00:41:04 -03:00
parent e0f6d28a88
commit 558545e469
23 changed files with 3005 additions and 2824 deletions

View File

@@ -1,8 +1,10 @@
<template>
<v-app-bar flat>
<v-app-bar-title>
<v-icon icon="mdi-whatsapp" left />
Evolution Manager
<v-btn variant="text" @click="$router.push('/')">
<v-img src="@/assets/logo.png" height="24" width="24" class="mr-2" />
Evolution Manager
</v-btn>
</v-app-bar-title>
<v-icon v-if="AppStore.validConnection" color="success">
@@ -33,8 +35,9 @@ export default {
this.$refs.settings.open();
},
},
mounted() {
if (!this.AppValidConnection) this.openSettings();
async mounted() {
await this.AppStore.loadConnection();
if (!this.AppStore.validConnection) this.openSettings();
},
};
</script>