mirror of
https://github.com/wassname/talk.git
synced 2026-08-16 11:29:31 +08:00
13 lines
267 B
JavaScript
13 lines
267 B
JavaScript
import LoveButton from './LoveButton';
|
|
|
|
import translations from './translations.json';
|
|
import {loadTranslations} from '/coral-i18n/services/i18n';
|
|
|
|
Promise.all([loadTranslations(translations)]);
|
|
|
|
export default {
|
|
slots: {
|
|
commentReactions: [LoveButton]
|
|
}
|
|
};
|