Integrazione ECommerce (conversione)
This commit is contained in:
0
src/views/scheletro_convers/scheletro_convers.scss
Executable file
0
src/views/scheletro_convers/scheletro_convers.scss
Executable file
40
src/views/scheletro_convers/scheletro_convers.ts
Executable file
40
src/views/scheletro_convers/scheletro_convers.ts
Executable file
@@ -0,0 +1,40 @@
|
||||
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'
|
||||
|
||||
|
||||
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();
|
||||
|
||||
|
||||
function mounted() {
|
||||
// Inizializza
|
||||
|
||||
}
|
||||
|
||||
onMounted(mounted)
|
||||
|
||||
return {
|
||||
userStore,
|
||||
costanti,
|
||||
tools,
|
||||
toolsext,
|
||||
}
|
||||
}
|
||||
})
|
||||
4
src/views/scheletro_convers/scheletro_convers.vue
Executable file
4
src/views/scheletro_convers/scheletro_convers.vue
Executable file
@@ -0,0 +1,4 @@
|
||||
<template>
|
||||
<div>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user