- Cataloghi
- Import ed Export Pagine - ObjectID sostituita con ObjectId
This commit is contained in:
@@ -1,8 +1,25 @@
|
||||
import { defineComponent } from 'vue'
|
||||
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() {
|
||||
return {}
|
||||
|
||||
const $router = useRouter()
|
||||
|
||||
onMounted(() => {
|
||||
});
|
||||
|
||||
const checkStatus = () => {
|
||||
// Logica per controllare lo stato del servizio (opzionale)
|
||||
$router.replace('/')
|
||||
};
|
||||
|
||||
return {
|
||||
checkStatus,
|
||||
tools,
|
||||
};
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user