26 lines
478 B
TypeScript
Executable File
26 lines
478 B
TypeScript
Executable File
import { computed, defineComponent, onMounted, ref } from 'vue'
|
|
|
|
import { tools } from '@store/Modules/tools'
|
|
import { useRouter } from 'vue-router';
|
|
|
|
export default defineComponent({
|
|
name: 'sito_offline',
|
|
setup() {
|
|
|
|
const $router = useRouter()
|
|
|
|
onMounted(() => {
|
|
});
|
|
|
|
const checkStatus = () => {
|
|
// Logica per controllare lo stato del servizio (opzionale)
|
|
$router.replace('/')
|
|
};
|
|
|
|
return {
|
|
checkStatus,
|
|
tools,
|
|
};
|
|
},
|
|
})
|