mirror of
https://github.com/unraid/api.git
synced 2026-05-13 02:59:17 -05:00
15 lines
350 B
Vue
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>
|