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 @@