mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
15 lines
477 B
TypeScript
15 lines
477 B
TypeScript
// Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
import AttributeInput from './AttributeInput.vue'
|
|
|
|
export default {
|
|
dataTypes: [
|
|
'input',
|
|
'integer',
|
|
'autocompletion_ajax_external_data_source',
|
|
'autocompletion_ajax',
|
|
'autocompletion_ajax_customer_organization',
|
|
'user_autocompletion',
|
|
], // TODO maybe have own modules for every type, but with shared code, to have an better understanding
|
|
component: AttributeInput,
|
|
}
|