mirror of
https://github.com/wassname/talk.git
synced 2026-07-25 13:30:59 +08:00
13 lines
257 B
JavaScript
13 lines
257 B
JavaScript
import LoveButton from './LoveButton';
|
|
|
|
import translations from './translations.json';
|
|
import {loadTranslations} from '/coral-framework/services/i18n';
|
|
|
|
loadTranslations(translations);
|
|
|
|
export default {
|
|
slots: {
|
|
commentReactions: [LoveButton]
|
|
}
|
|
};
|