eod
This commit is contained in:
@@ -44,7 +44,7 @@ GRID and other useful porting info:
|
|||||||
https://blog.anoff.io/2019-10-migrating-vuetify-1-to-2/
|
https://blog.anoff.io/2019-10-migrating-vuetify-1-to-2/
|
||||||
|
|
||||||
=============== UPGRADING NOTES =================
|
=============== 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!
|
** 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
|
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
|
- 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
|
- 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
|
||||||
=================================================
|
=================================================
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
:value="isVisible"
|
:value="isVisible"
|
||||||
:color="options.type"
|
:color="options.type"
|
||||||
:timeout="options.timeout"
|
:timeout="options.timeout"
|
||||||
|
|
||||||
>
|
>
|
||||||
<v-alert :type="options.type">
|
<v-alert :type="options.type">
|
||||||
{{ message }}
|
{{ message }}
|
||||||
@@ -14,6 +15,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
//todo: queify this so it can display multiple but sequentially
|
||||||
export default {
|
export default {
|
||||||
data: () => ({
|
data: () => ({
|
||||||
isVisible: false,
|
isVisible: false,
|
||||||
|
|||||||
Reference in New Issue
Block a user