From 352aabb21d6d56b87a1f2e2daad819fa0c7f6dee Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Sun, 2 Jun 2019 22:49:50 +0200 Subject: [PATCH] Common input field and button moved to a component that can be reused --- src/components/ui/LoadingPlaceholder.vue | 74 +--------------- src/components/ui/SeasonedButton.vue | 61 ++++++++++++++ src/components/ui/SeasonedInput.vue | 103 +++++++++++++++++++++++ 3 files changed, 165 insertions(+), 73 deletions(-) create mode 100644 src/components/ui/SeasonedButton.vue create mode 100644 src/components/ui/SeasonedInput.vue diff --git a/src/components/ui/LoadingPlaceholder.vue b/src/components/ui/LoadingPlaceholder.vue index 14e3ed5..58a6e13 100644 --- a/src/components/ui/LoadingPlaceholder.vue +++ b/src/components/ui/LoadingPlaceholder.vue @@ -22,78 +22,6 @@ export default { \ No newline at end of file diff --git a/src/components/ui/SeasonedButton.vue b/src/components/ui/SeasonedButton.vue new file mode 100644 index 0000000..f803c21 --- /dev/null +++ b/src/components/ui/SeasonedButton.vue @@ -0,0 +1,61 @@ + + + + + \ No newline at end of file diff --git a/src/components/ui/SeasonedInput.vue b/src/components/ui/SeasonedInput.vue new file mode 100644 index 0000000..2585e18 --- /dev/null +++ b/src/components/ui/SeasonedInput.vue @@ -0,0 +1,103 @@ + + + + \ No newline at end of file