Update dependencies

This commit is contained in:
2024-03-10 17:22:04 -04:00
parent 052cae2c2e
commit 6ff1a69e2b
2 changed files with 541 additions and 484 deletions

View File

@@ -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 = () => [

1016
yarn.lock

File diff suppressed because it is too large Load Diff