This commit is contained in:
2019-05-24 20:24:35 +00:00
parent 9fe11125fa
commit b1640e0baa
11 changed files with 405 additions and 18 deletions

View File

@@ -150,6 +150,18 @@ Vue.component("gz-date-time-picker", gzdateandtimepicker);
//
Vue.use(VuetifyDialog);
/////////////////////////////////////////////////////////////
//DIRECTIVES
//
//Auto focus on forms
Vue.directive("focus", {
// When the bound element is inserted into the DOM...
inserted: function(el) {
// Focus the element
el.focus();
}
});
/////////////////////////////////////////////////////////////////
// INSTANTIATE
//