PASSAGGIO A VITE !
AGG. 1.1.23
This commit is contained in:
@@ -1,18 +1,20 @@
|
||||
import { CMyCircuit } from '@/components/CMyCircuit'
|
||||
import { computed, defineComponent, onMounted, PropType, ref, toRef, watch } from 'vue'
|
||||
import { CMyCircuit } from '@src/components/CMyCircuit'
|
||||
import type { PropType } from 'vue';
|
||||
import { computed, defineComponent, onMounted, ref, toRef, watch } from 'vue'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useCircuitStore } from '@store/CircuitStore'
|
||||
import { useI18n } from '@/boot/i18n'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { costanti } from '@costanti'
|
||||
import { ICircuit, ISearchList, IUserFields } from 'model'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@store/Modules/tools'
|
||||
import { CUserNonVerif } from '@/components/CUserNonVerif'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CMovements } from '@/components/CMovements'
|
||||
import { CSendRISTo } from '@/components/CSendRISTo'
|
||||
import type { ICircuit } from 'model';
|
||||
import { ISearchList, IUserFields } from 'model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
import { CUserNonVerif } from '@src/components/CUserNonVerif'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CMovements } from '@src/components/CMovements'
|
||||
import { CSendRISTo } from '@src/components/CSendRISTo'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
@@ -49,11 +51,6 @@ export default defineComponent({
|
||||
required: false,
|
||||
default: null,
|
||||
},
|
||||
visu: {
|
||||
type: Number,
|
||||
required: false,
|
||||
default: 0,
|
||||
},
|
||||
},
|
||||
setup(props, { emit }) {
|
||||
const userStore = useUserStore()
|
||||
@@ -67,10 +64,10 @@ export default defineComponent({
|
||||
const finishloading = ref(false)
|
||||
const loadingvalues = ref(false)
|
||||
|
||||
const mytab = ref('circuiti')
|
||||
const mytab = ref('circuiti')
|
||||
|
||||
const init = ref(false)
|
||||
|
||||
|
||||
const globalStore = useGlobalStore()
|
||||
const isfinishLoadingSite = computed(() => globalStore.finishLoading)
|
||||
|
||||
@@ -191,9 +188,9 @@ export default defineComponent({
|
||||
|
||||
}
|
||||
|
||||
function mounted() {
|
||||
async function mounted() {
|
||||
if (globalStore.finishLoading) {
|
||||
load()
|
||||
await load()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user