mirror of
https://github.com/wassname/talk.git
synced 2026-07-06 05:17:19 +08:00
14 lines
377 B
JavaScript
14 lines
377 B
JavaScript
import OffTopicCheckbox from './components/OffTopicCheckbox';
|
|
import OffTopicTag from './components/OffTopicTag';
|
|
import translations from './translations.json';
|
|
import {loadTranslations} from 'coral-framework/services/i18n';
|
|
|
|
loadTranslations(translations);
|
|
|
|
export default {
|
|
slots: {
|
|
commentInputDetailArea: [OffTopicCheckbox],
|
|
commentInfoBar: [OffTopicTag]
|
|
}
|
|
};
|