mirror of
https://github.com/unraid/api.git
synced 2026-01-04 15:39:52 -06:00
13 lines
274 B
Vue
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>
|
|
|