minor
This commit is contained in:
@ -22,7 +22,7 @@
|
||||
me?: { id: string; do: any; data: any };
|
||||
slot?: string;
|
||||
component?: string;
|
||||
store?: Record<string, any>;
|
||||
data?: Record<string, any>;
|
||||
children?: IComposer[];
|
||||
machine?: any;
|
||||
}
|
||||
|
@ -3,18 +3,23 @@ import { writable } from 'svelte/store';
|
||||
|
||||
export const queryTodos = writable([
|
||||
{
|
||||
id: "id1",
|
||||
id: "1",
|
||||
text: "todo 1",
|
||||
type: "x"
|
||||
},
|
||||
{
|
||||
id: "id2",
|
||||
id: "2",
|
||||
text: "todo 2",
|
||||
type: "x"
|
||||
},
|
||||
{
|
||||
id: "id3",
|
||||
id: "3",
|
||||
text: "todo 3",
|
||||
type: "z"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
text: "todo 4",
|
||||
type: "z"
|
||||
}
|
||||
]);
|
||||
|
Reference in New Issue
Block a user