mirror of
https://github.com/directus/directus.git
synced 2026-02-17 03:03:22 -05:00
* generalyze extensions * replace vue-i18n tranlslations * replace vue-i18n tranlslations * add missing commas * replace translations recursive * restructure translate * remove unused i18n * remove unused i18n * remove unused i18n * Remove i18n context in define * Rename translate util file * Fix type errors Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
14 lines
389 B
TypeScript
14 lines
389 B
TypeScript
import { defineInterface } from '@/interfaces/define';
|
|
import InterfaceOptions from './interface-options.vue';
|
|
|
|
export default defineInterface({
|
|
id: 'interface-options',
|
|
name: '$t:interfaces.interface-options.interface-options',
|
|
description: '$t:interfaces.interface-options.description',
|
|
icon: 'box',
|
|
component: InterfaceOptions,
|
|
types: ['string'],
|
|
options: [],
|
|
system: true,
|
|
});
|