Files
api/web/components/Notifications/Sidebar.vue
T
2024-09-24 13:54:36 -07:00

15 lines
350 B
Vue

<script setup lang="ts">
import { storeToRefs } from 'pinia';
import { useNotificationsStore } from '~/store/notifications';
const notificationsStore = useNotificationsStore();
const { isOpen } = storeToRefs(notificationsStore);
</script>
<template>
<div v-if="isOpen" class="h-full w-full max-w-36">
This is my sidebar
</div>
</template>