- Tag HTML sugli annunci non vengono visualizzati correttamente... <div>...</div>

This commit is contained in:
Surya Paolo
2024-09-18 13:11:56 +02:00
parent d4e0f2cf1a
commit 1142526ed8
60 changed files with 1273 additions and 90 deletions

View File

@@ -1,4 +1,4 @@
import { defineComponent, ref, onMounted, watch, computed } from 'vue'
import { defineComponent, ref, onMounted, watch, computed } from 'vue'
import { tools } from '@src/store/Modules/tools'
@@ -49,14 +49,14 @@ export default defineComponent({
const myrisimport = ref('')
const errimport = ref(false)
const okimport = ref(false)
const newsstate = ref (<INewsState>{})
const newsstate = ref(<INewsState>{})
const percsubscribed = ref(0.0)
const polling = ref(<any> null)
const polling = ref(<any>null)
const tab = ref('')
const emailtextheader = ref('')
const eseguipolling = ref(false)
const idparam = computed( () => $route.params.idparam ? $route.params.idparam.toString() : '')
const idparam = computed(() => $route.params.idparam ? $route.params.idparam.toString() : '')
async function mounted() {
await load()
@@ -101,7 +101,6 @@ export default defineComponent({
}
function beforeDestroy() {
console.log('beforeDestroy')
if (polling.value)
clearInterval(polling.value)
}