From b4244cfa6ceee95721c015ac9fd65cd827703eef Mon Sep 17 00:00:00 2001 From: snozaki Date: Wed, 8 Feb 2023 21:08:16 +0900 Subject: [PATCH] rename --- composables/{useTags.ts => useTag.ts} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename composables/{useTags.ts => useTag.ts} (96%) diff --git a/composables/useTags.ts b/composables/useTag.ts similarity index 96% rename from composables/useTags.ts rename to composables/useTag.ts index b7189e3..1aa1f0f 100644 --- a/composables/useTags.ts +++ b/composables/useTag.ts @@ -13,11 +13,11 @@ const nuxtApp = useNuxtApp() const user = useUser() interface TagState { - id: string + id?: string name: string userId: string - createdAt: string - updatedAt: string + createdAt: string | Date + updatedAt: string | Date } class Tags {