mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
9 lines
336 B
TypeScript
9 lines
336 B
TypeScript
// Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
// "Pre" Load editor on app start to be faster available
|
|
const loadEditor = () => import('#shared/components/Form/fields/FieldEditor/FieldEditorInput.vue')
|
|
|
|
// If loaded more components in the future
|
|
export const preloadComponents = () => {
|
|
loadEditor()
|
|
}
|