Iniziato il SignUp

This commit is contained in:
paolo
2018-10-13 19:14:58 +02:00
parent a2673c0502
commit 43f2484e54
53 changed files with 3072 additions and 518 deletions

View File

@@ -1,22 +1,27 @@
<template>
<div class="fixed-center text-center">
<p>
<img
src="~assets/sad.svg"
style="width:30vw;max-width:150px;"
>
</p>
<p class="text-faded">Sorry, nothing here...<strong>(404)</strong></p>
<q-btn
color="secondary"
style="width:200px;"
@click="$router.push('/')"
>Go back</q-btn>
</div>
<q-page-container>
<q-page class="flex flex-center">
<div class="fixed-center text-center">
<p>
<img
src="~assets/sad.svg"
style="width:30vw;max-width:150px;"
>
</p>
<p class="text-faded">Sorry, nothing here...<strong>(404)</strong></p>
<q-btn
color="secondary"
style="width:200px;"
@click="$router.push('/')"
>Go back
</q-btn>
</div>
</q-page>
</q-page-container>
</template>
<script>
export default {
name: 'Error404'
}
export default {
name: 'Error404'
}
</script>

View File

@@ -41,7 +41,7 @@
<script>
import {mapGetters, mapMutations} from 'vuex'
import {mapGetters, mapActions} from 'vuex'
import * as types from '../store/mutation-types'
import { Notify } from 'quasar'
@@ -61,7 +61,7 @@
deferredPrompt: function (){
return deferredPrompt;
},
...mapGetters(['getConta']),
...mapGetters("glob", ['getConta']),
mystilecard: function () {
return {
visibility: this.cardvisible,
@@ -70,10 +70,14 @@
}
},
methods: {
...mapMutations(['setConta']),
showNotification () {
this.$q.notify('Some other message')
},
...mapActions("glob", {
impostaconta: types.SET_VALUE,
'setLayoutNeeded': types.SET_LAYOUT_NEEDED,
'setIsLoginPage': types.SET_LOGIN_PAGE
}),
initprompt() {
window.addEventListener('beforeinstallprompt', function (event) {
console.log('******************************** beforeinstallprompt fired');
@@ -129,7 +133,7 @@
openCreatePostModal() {
console.log('APERTO ! openCreatePostModal');
this.setConta(this.getConta+1);
this.impostaconta(this.getConta+1);
this.visibile = !this.visibile;