Files
newfreeplanet_OLD/src/views/scheletro_convers/scheletro_convers.ts
Surya Paolo cbf3bdafc7 avanti...
2023-11-27 16:27:05 +01:00

46 lines
1.1 KiB
TypeScript
Executable File

import { defineComponent, onMounted, ref } from 'vue'
import { tools } from '@store/Modules/tools'
import { useUserStore } from '@store/UserStore'
import { useRouter } from 'vue-router'
import { useGlobalStore } from '@store/globalStore'
import { useProducts } from '@store/Products'
import { useI18n } from '@/boot/i18n'
import { toolsext } from '@store/Modules/toolsext'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
import { shared_consts } from '@src/common/shared_vuejs'
// import MixinBase from '@src/mixins/mixin-base'
export default defineComponent({
name: 'Scheletro',
components: { },
props: {},
setup() {
const userStore = useUserStore()
const globalStore = useGlobalStore()
const productStore = useProducts()
const $router = useRouter()
const $q = useQuasar()
const { t } = useI18n();
// const { setValDb, getValDb } = MixinBase()
function mounted() {
// Inizializza
}
onMounted(mounted)
return {
userStore,
costanti,
tools,
toolsext,
shared_consts,
}
}
})