From 97f8ca499ae7dd4cfaa9b17ad96c802fd6f33271 Mon Sep 17 00:00:00 2001 From: Peaceultime Date: Tue, 29 Oct 2024 14:04:05 +0100 Subject: [PATCH] Progressing on the basic components implementation --- components/Switch.vue | 17 +++++++++++++++ components/TextInput.vue | 15 +++++++++++++ components/Toast.vue | 41 ++++++++++++++++++++++++++++------- components/todo/Switch.vue | 0 components/todo/TextInput.vue | 0 nuxt.config.ts | 2 +- pages/index.vue | 13 +++++------ 7 files changed, 72 insertions(+), 16 deletions(-) create mode 100644 components/Switch.vue create mode 100644 components/TextInput.vue delete mode 100644 components/todo/Switch.vue delete mode 100644 components/todo/TextInput.vue diff --git a/components/Switch.vue b/components/Switch.vue new file mode 100644 index 0000000..4302d41 --- /dev/null +++ b/components/Switch.vue @@ -0,0 +1,17 @@ + + + \ No newline at end of file diff --git a/components/TextInput.vue b/components/TextInput.vue new file mode 100644 index 0000000..5359b9c --- /dev/null +++ b/components/TextInput.vue @@ -0,0 +1,15 @@ + + + \ No newline at end of file diff --git a/components/Toast.vue b/components/Toast.vue index 66f7a6b..6a5b84a 100644 --- a/components/Toast.vue +++ b/components/Toast.vue @@ -1,33 +1,58 @@