From be959db125fd47547a3fa47ca04f5dfc4a52a96e Mon Sep 17 00:00:00 2001 From: dtomlinson Date: Wed, 1 Apr 2020 02:23:40 +0100 Subject: [PATCH] adding latest --- firebase.md | 18 ++++++--- src/components/Appbar.vue | 15 ------- src/router/index.js | 6 +++ src/scss/{_variables.scss => variables.scss} | 3 +- src/views/Triangle.vue | 42 ++++++++++++++++++++ src/views/forms/LoginForm.vue | 3 +- 6 files changed, 64 insertions(+), 23 deletions(-) rename src/scss/{_variables.scss => variables.scss} (98%) create mode 100644 src/views/Triangle.vue diff --git a/firebase.md b/firebase.md index ed48195..761ced1 100644 --- a/firebase.md +++ b/firebase.md @@ -660,11 +660,7 @@ You would refer to this form with `this.$refs.form`. " > - {{ - field.showIconData - ? field.appendIconShow - : field.appendIconHide - }} + {{ field.showIconData ? field.appendIconShow : field.appendIconHide }} @@ -746,3 +742,15 @@ async submit() { ``` Here we are checking the validity of the form, and enabling/disabling the loading prop based on whether or not the form is correct. + +### Hints + +The following is a codepen showing how you can dynamically populate a hint to show if the form is submitted with empty values. This can be useful if don't want to show an error message, but you still want the form to provide feedback on what to fill in. + + + +## Triangle backgrounds + +### Designs + +Dual image: diff --git a/src/components/Appbar.vue b/src/components/Appbar.vue index 75b723c..cf5b646 100644 --- a/src/components/Appbar.vue +++ b/src/components/Appbar.vue @@ -1,20 +1,5 @@