From 379fa21571dcbd20dc8a78d14f32202c5291c3e7 Mon Sep 17 00:00:00 2001 From: advplyr Date: Thu, 8 Dec 2022 17:54:56 -0600 Subject: [PATCH] Add:Podcast create form #225 --- components/forms/NewPodcastForm.vue | 182 +++++++++++++++++++ components/ui/MultiSelect.vue | 261 ++++++++++++++++++++++++++++ components/ui/TextInput.vue | 8 +- components/ui/TextareaInput.vue | 53 ++++++ components/ui/TextareaWithLabel.vue | 41 +++++ pages/bookshelf/search.vue | 6 +- plugins/axios.js | 6 +- plugins/init.client.js | 37 ++++ 8 files changed, 582 insertions(+), 12 deletions(-) create mode 100644 components/forms/NewPodcastForm.vue create mode 100644 components/ui/MultiSelect.vue create mode 100644 components/ui/TextareaInput.vue create mode 100644 components/ui/TextareaWithLabel.vue diff --git a/components/forms/NewPodcastForm.vue b/components/forms/NewPodcastForm.vue new file mode 100644 index 00000000..a91e4661 --- /dev/null +++ b/components/forms/NewPodcastForm.vue @@ -0,0 +1,182 @@ + + + \ No newline at end of file diff --git a/components/ui/MultiSelect.vue b/components/ui/MultiSelect.vue new file mode 100644 index 00000000..fb7397e1 --- /dev/null +++ b/components/ui/MultiSelect.vue @@ -0,0 +1,261 @@ + + + + + \ No newline at end of file diff --git a/components/ui/TextInput.vue b/components/ui/TextInput.vue index ed37523c..09480e23 100644 --- a/components/ui/TextInput.vue +++ b/components/ui/TextInput.vue @@ -1,6 +1,6 @@