When switching between tabs on the complete site (https://lestarch.github.io/repair-cafe-app/#demo) the various fields will clear. Users prefer if these items do not clear. Specifically the search tabs.
Initial diagnosis: rendering of the various pages is done through the route directive. This rendering is done via the v-if, v-else-if, and v-else directives. These directives completely remove the elements. See: https://vuejs.org/guide/essentials/conditional.html#v-if-vs-v-show
When switching between tabs on the complete site (https://lestarch.github.io/repair-cafe-app/#demo) the various fields will clear. Users prefer if these items do not clear. Specifically the search tabs.
Initial diagnosis: rendering of the various pages is done through the route directive. This rendering is done via the
v-if
,v-else-if
, andv-else
directives. These directives completely remove the elements. See: https://vuejs.org/guide/essentials/conditional.html#v-if-vs-v-showWe likely should switch to
v-show
driven elements to prevent the destruction of these components. This rendering is done here: https://github.com/LeStarch/repair-cafe-app/blob/4fbbffb44450f028339c7e3277ad4c64a605996f/src/views/app.template.js#L5-L11