47 lines
957 B
TypeScript
Executable File
47 lines
957 B
TypeScript
Executable File
import { defineComponent, ref, onMounted, computed } from 'vue'
|
|
import { useI18n } from '@src/boot/i18n'
|
|
|
|
import { tools } from '../../store/Modules/tools'
|
|
|
|
import { shared_consts } from '@/common/shared_vuejs'
|
|
|
|
import { useUserStore } from '@store/UserStore'
|
|
import { useGlobalStore } from '@store/globalStore'
|
|
import { useQuasar } from 'quasar'
|
|
import { costanti } from '@costanti'
|
|
import { useRouter } from 'vue-router'
|
|
|
|
export default defineComponent({
|
|
name: 'CAITools',
|
|
props: {
|
|
},
|
|
components: {
|
|
},
|
|
setup(props, { emit }) {
|
|
const $q = useQuasar()
|
|
const { t } = useI18n()
|
|
const userStore = useUserStore()
|
|
const globalStore = useGlobalStore()
|
|
const isfinishLoading = computed(() => globalStore.finishLoading)
|
|
|
|
const $router = useRouter()
|
|
|
|
const querySel = ref('')
|
|
|
|
function mount() {
|
|
// Mount
|
|
|
|
|
|
}
|
|
|
|
onMounted(mount)
|
|
|
|
return {
|
|
t,
|
|
querySel,
|
|
$q,
|
|
globalStore,
|
|
}
|
|
}
|
|
})
|