Skip to content

Notice Store

import

ts

import { useNoticeStore } from '@jupiter/ts-monorepo';

// store
const noticeStore = useNoticeStore();

// computed
const notices = computed(() => noticeStore.notices);

selectNotice

공지사항 검색

Example

ts
noticeStore.selectNotice({
    deleted_at: null,
});