mirror of
https://github.com/EvolutionAPI/evolution-manager.git
synced 2025-07-16 04:02:54 -06:00
90 lines
2.0 KiB
Vue
90 lines
2.0 KiB
Vue
<template>
|
|
<v-tabs v-model="tab" background-color="transparent" color="primary" grow>
|
|
<v-tab v-for="tab in tabs" :key="tab.id" :value="tab.id">
|
|
<v-icon start>{{ tab.icon }}</v-icon>
|
|
{{ tab.title }}
|
|
</v-tab>
|
|
</v-tabs>
|
|
|
|
<v-window v-model="tab">
|
|
<v-window-item v-for="tab in tabs" :key="tab.id" :value="tab.id">
|
|
<div class="d-flex flex-column gap-8">
|
|
<component
|
|
v-for="component in tab.components"
|
|
:key="component"
|
|
:is="component"
|
|
:instance="instance"
|
|
/>
|
|
</div>
|
|
</v-window-item>
|
|
</v-window>
|
|
</template>
|
|
|
|
<script>
|
|
import Options from "./settings/Options.vue";
|
|
import Webhook from "./settings/Webhook.vue";
|
|
import Websocket from "./settings/Websocket.vue";
|
|
import Rabbitmq from "./settings/Rabbitmq.vue";
|
|
import Chatwoot from "./settings/Chatwoot.vue";
|
|
import Typebot from "./settings/Typebot.vue";
|
|
|
|
import OpenSendMessage from "./message/OpenSendMessage.vue";
|
|
import MyGroups from "./message/MyGroups.vue";
|
|
import MyChats from "./message/MyChats.vue";
|
|
import MyContacts from "./message/MyContacts.vue";
|
|
import HasWhatsapp from "./message/HasWhatsapp.vue";
|
|
export default {
|
|
components: {
|
|
Options,
|
|
Webhook,
|
|
Websocket,
|
|
Rabbitmq,
|
|
Chatwoot,
|
|
Typebot,
|
|
OpenSendMessage,
|
|
MyGroups,
|
|
MyChats,
|
|
HasWhatsapp,
|
|
MyContacts,
|
|
},
|
|
data: () => ({
|
|
tab: "settings",
|
|
tabs: [
|
|
{
|
|
id: "settings",
|
|
icon: "mdi-cog",
|
|
title: "Configurações",
|
|
components: [
|
|
"Options",
|
|
"Webhook",
|
|
"Websocket",
|
|
"Rabbitmq",
|
|
"Chatwoot",
|
|
"Typebot",
|
|
],
|
|
},
|
|
{
|
|
id: "message",
|
|
icon: "mdi-message",
|
|
title: "Mensagens",
|
|
components: [
|
|
"OpenSendMessage",
|
|
"HasWhatsapp",
|
|
"MyContacts",
|
|
"MyGroups",
|
|
"MyChats",
|
|
],
|
|
},
|
|
],
|
|
}),
|
|
props: {
|
|
instance: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|