- 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

@@ -4,6 +4,7 @@ import { CTitleBanner } from '../CTitleBanner'
import { defineComponent, onMounted, ref, toRef, watch } from 'vue'
import { useQuasar } from 'quasar'
import { useI18n } from 'vue-i18n'
export default defineComponent({
name: 'CMyEditor',
@@ -47,6 +48,7 @@ export default defineComponent({
},
setup(props, { emit }) {
const $q = useQuasar()
const { t } = useI18n();
const editorRef = ref(<any>null)
const editor = ref('')
@@ -247,6 +249,7 @@ export default defineComponent({
editorRef,
showtools,
characterCount,
t,
}
}
})