- Fix saldo pendente - aggiunto bottone markup Telegram - aggionta opzione per registrarsi direttamente su Telegram, senza doversi registrare ad un sito
75 lines
1.4 KiB
TypeScript
Executable File
75 lines
1.4 KiB
TypeScript
Executable File
import {
|
|
IListRoutes,
|
|
ILang,
|
|
IPreloadImages,
|
|
ISites,
|
|
} from '@model'
|
|
import { func } from '@store/Modules/fieldsTable'
|
|
|
|
|
|
const firstPage = {
|
|
active: true,
|
|
order: 5,
|
|
path: '/',
|
|
materialIcon: 'home',
|
|
name: 'pages.home',
|
|
component: () => import('@src/root/mainview/mainview.vue'),
|
|
reqauth: false,
|
|
inmenu: true,
|
|
infooter: true,
|
|
}
|
|
|
|
function getDynamicPages(site: ISites): IListRoutes[] {
|
|
|
|
const baseroutes: IListRoutes[] = [
|
|
/*{
|
|
active: true,
|
|
order: 5,
|
|
path: '/',
|
|
materialIcon: 'home',
|
|
name: 'pages.home',
|
|
component: () => import('@src/root/mainview/mainview.vue'),
|
|
reqauth: false,
|
|
inmenu: true,
|
|
infooter: true,
|
|
},
|
|
{
|
|
active: true,
|
|
order: 20,
|
|
path: '/events',
|
|
materialIcon: 'fas fa-bullhorn',
|
|
name: 'mypages.events',
|
|
component: () => import('@/root/eventi/eventi.vue'),
|
|
meta: { requiresAuth: true },
|
|
inmenu: true,
|
|
infooter: true,
|
|
},*/
|
|
]
|
|
|
|
return baseroutes
|
|
}
|
|
|
|
export function firstimagehome() {
|
|
|
|
let img = 'statics/images/background.jpg'
|
|
return img
|
|
}
|
|
|
|
const preLoadImages: IPreloadImages[] = []
|
|
|
|
export const lang_available: ILang[] = []
|
|
export const arrLangUsed: string[] = []
|
|
|
|
export const preloadedimages = []
|
|
|
|
export const routes: IListRoutes[] = [firstPage]
|
|
|
|
export const static_data = {
|
|
routes,
|
|
arrLangUsed,
|
|
getDynamicPages,
|
|
lang_available,
|
|
preLoadImages,
|
|
preloadedimages,
|
|
}
|