24 lines
552 B
Vue
24 lines
552 B
Vue
<script
|
|
setup
|
|
lang="ts"
|
|
>
|
|
import { useChatbotStore } from 'src/stores/chatbot-store';
|
|
|
|
const chatbot_store = useChatbotStore();
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
style="z-index: 3; margin-right: 20px"
|
|
class="display: flex"
|
|
>
|
|
<q-btn
|
|
flat
|
|
color="transparant"
|
|
size="20px"
|
|
icon="smart_toy"
|
|
@click="chatbot_store.is_showing_chatbot = !chatbot_store.is_showing_chatbot"
|
|
style="--q-icon-size: 28px; min-width: auto;"
|
|
/>
|
|
</div>
|
|
</template> |