Skip to content

Commit fab0d66

Browse files
committed
chore(sheet-notes): add dummy notes for manual testing
1 parent 9564d56 commit fab0d66

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

src/stores/noteStore.ts

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,22 @@ import type { Note } from '../types/note'
33

44
export const useNoteStore = defineStore('note', {
55
state: () => ({
6-
notes: [] as Note[],
6+
notes: [
7+
{
8+
id: 1,
9+
sheetId: 1,
10+
author: 'Dirigent',
11+
content: 'Takt 42: Einsatz verzögern',
12+
createdAt: new Date().toISOString(),
13+
},
14+
{
15+
id: 2,
16+
sheetId: 1,
17+
author: 'Mitglied',
18+
content: 'Bitte Tempo beachten',
19+
createdAt: new Date().toISOString(),
20+
},
21+
] as Note[],
722
}),
823
actions: {
924
addNote(sheetId: number, content: string, author = 'Du') {

0 commit comments

Comments
 (0)