Update dependencies
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { defineStore } from 'pinia';
|
||||
import { Databases } from 'appwrite';
|
||||
|
||||
export const useCounterStore = defineStore('counter', {
|
||||
state: () => ({
|
||||
@@ -19,12 +20,14 @@ export const useCounterStore = defineStore('counter', {
|
||||
});
|
||||
|
||||
export interface Task {
|
||||
id: number;
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
iconsrc?: string;
|
||||
due: Date;
|
||||
taskLabels: string[];
|
||||
dueDate: Date;
|
||||
created: Date;
|
||||
parentId: string;
|
||||
completed: boolean;
|
||||
}
|
||||
|
||||
const getSampleData = () => [
|
||||
|
||||
Reference in New Issue
Block a user