- creato editor di Pagine (iniziato)

- fix: mancano i "t," su alcuni componenti...
This commit is contained in:
Surya Paolo
2025-09-02 16:22:13 +02:00
parent 4f4297ca21
commit 574f389200
324 changed files with 5838 additions and 759 deletions

View File

@@ -1,6 +1,7 @@
import { tools } from '@tools'
import { useQuasar } from 'quasar'
import { defineComponent } from 'vue'
import { useI18n } from 'vue-i18n'
export default defineComponent({
name: 'COpenStreetMap',
@@ -32,6 +33,7 @@ export default defineComponent({
},
setup(props, { emit }) {
const $q = useQuasar()
const { t } = useI18n()
function mywidth() {
return tools.getwidth($q) - 20
@@ -45,6 +47,7 @@ export default defineComponent({
return {
mywidth,
myheight,
t,
}
}
})