diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index bc4fe0fa..adcce6f0 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -44,7 +44,7 @@ GRID and other useful porting info: https://blog.anoff.io/2019-10-migrating-vuetify-1-to-2/ =============== UPGRADING NOTES ================= - +Vuetify source code for components is here: https://github.com/vuetifyjs/vuetify/tree/master/packages/vuetify/src/components ** NOTE: can start dev server, go to *it's* client to see a working older version of ayanova client for comparision! http://localhost:7575/login @@ -55,7 +55,8 @@ CURRENT WORK: Replace dialog, confirm etc with my own implementations as stock a - Currently gznotify component is working but needs to support a queue and show each one after the other times out as per specs that say only one snackbar / toast at a time - more info here and some code people made to do this https://github.com/vuetifyjs/vuetify/issues/2384 - + - handling close event maybe here: https://github.com/vuetifyjs/vuetify/issues/756#issuecomment-452905069 + - vsnackbar source: https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VSnackbar/VSnackbar.ts ================================================= diff --git a/ayanova/src/components/gznotify.vue b/ayanova/src/components/gznotify.vue index 2978445c..9f5c0d1a 100644 --- a/ayanova/src/components/gznotify.vue +++ b/ayanova/src/components/gznotify.vue @@ -3,6 +3,7 @@ :value="isVisible" :color="options.type" :timeout="options.timeout" + > {{ message }} @@ -14,6 +15,7 @@