2024-12-17 17:56:03 +01:00
|
|
|
import { computed, defineComponent, onMounted, ref } from 'vue'
|
|
|
|
|
|
|
|
|
|
import { tools } from '@store/Modules/tools'
|
|
|
|
|
import { useRouter } from 'vue-router';
|
2021-08-31 18:09:59 +02:00
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
|
name: 'sito_offline',
|
|
|
|
|
setup() {
|
2024-12-17 17:56:03 +01:00
|
|
|
|
|
|
|
|
const $router = useRouter()
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const checkStatus = () => {
|
|
|
|
|
// Logica per controllare lo stato del servizio (opzionale)
|
|
|
|
|
$router.replace('/')
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
checkStatus,
|
|
|
|
|
tools,
|
|
|
|
|
};
|
2021-08-31 18:09:59 +02:00
|
|
|
},
|
|
|
|
|
})
|