"RISO.APP alla fine copiare la cartella upload di insiemesipuo.app in riso.app" Corretto BOT Menu Altre sistemazioni (idShippings)
35 lines
1.2 KiB
TypeScript
Executable File
35 lines
1.2 KiB
TypeScript
Executable File
import {
|
|
defineComponent, ref, computed,
|
|
} from 'vue'
|
|
|
|
import { tools } from '@src/store/Modules/tools'
|
|
import { toolsext } from '@src/store/Modules/toolsext'
|
|
import { CSkill } from '@/components/CSkill'
|
|
import { CFinder } from '@/components/CFinder'
|
|
import { CDashboard } from '@/components/CDashboard'
|
|
import { CChartMap } from '@src/components/CChartMap'
|
|
import { CUserNonVerif } from '@/components/CUserNonVerif'
|
|
import { CTitlePage } from '@/components/CTitlePage'
|
|
import { CMapsEsempio } from '@src/components/CMapsEsempio'
|
|
import { CVerifyEmail } from '@src/components/CVerifyEmail'
|
|
import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
|
|
import { Footer } from '@/components/Footer'
|
|
import { useGlobalStore } from '@store/globalStore'
|
|
import { useUserStore } from '@store/UserStore'
|
|
import { static_data } from '@/db/static_data'
|
|
import MixinBase from '@/mixins/mixin-base'
|
|
import MixinUsers from '@/mixins/mixin-users'
|
|
|
|
export default defineComponent({
|
|
name: 'Goods',
|
|
components: { CSkill, CChartMap, CMapsEsempio, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, Footer },
|
|
setup() {
|
|
|
|
return {
|
|
tools,
|
|
toolsext,
|
|
static_data,
|
|
}
|
|
},
|
|
})
|