Se aggiungo un campo nuovo, non viene visualizzato il campo, sistemare il cookie come viene gestito

Aggiungere campo Offro/Cerco
Aggiungere HOME con pulsantoni grandi
Aggiunto Link per condividere la APP ai propri Amici
This commit is contained in:
paoloar77
2022-02-12 17:02:10 +01:00
parent b21a7d1885
commit 02048b58ad
37 changed files with 483 additions and 25 deletions

View File

@@ -0,0 +1,45 @@
import { defineComponent, ref, computed, PropType, toRef } from 'vue'
import { useUserStore } from '@store/UserStore'
import { useRouter } from 'vue-router'
import { useGlobalStore } from '@store/globalStore'
import { useI18n } from '@/boot/i18n'
import { tools } from '@store/Modules/tools'
export default defineComponent({
name: 'CBigBtn',
components: {},
props: {
label: {
type: String,
required: true
},
to: {
type: String,
required: false,
default: ''
},
icon: {
type: String,
required: false,
default: ''
},
color: {
type: String,
required: false,
default: 'grey'
},
},
setup(props, { emit }) {
const userStore = useUserStore()
const $router = useRouter()
const globalStore = useGlobalStore()
const { t } = useI18n();
return {
userStore,
tools,
}
}
})