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