This commit is contained in:
2019-11-07 00:35:52 +00:00
parent 6c580001be
commit 171a389af9
2 changed files with 5 additions and 2 deletions

View File

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

View File

@@ -3,6 +3,7 @@
:value="isVisible"
:color="options.type"
:timeout="options.timeout"
>
<v-alert :type="options.type">
{{ message }}
@@ -14,6 +15,7 @@
</template>
<script>
//todo: queify this so it can display multiple but sequentially
export default {
data: () => ({
isVisible: false,