Files
api/web/components/Notifications/OpenButton.vue
2024-10-18 11:42:38 -04:00

13 lines
274 B
Vue

<script setup lang="ts">
import { useNotificationsStore } from '~/store/notifications';
const notificationsStore = useNotificationsStore();
</script>
<template>
<BrandButton text="My Button" @click="notificationsStore.toggle" />
<NotificationsSidebar />
</template>