mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 01:04:09 +08:00
14 lines
378 B
JavaScript
14 lines
378 B
JavaScript
import translations from './translations.json';
|
|
import FeaturedTag from './components/FeaturedTag';
|
|
import FeaturedButton from './components/FeaturedButton';
|
|
import FeaturedComments from './components/FeaturedComments';
|
|
|
|
export default {
|
|
translations,
|
|
slots: {
|
|
commentInfoBar: [FeaturedTag],
|
|
commentReactions: [FeaturedButton],
|
|
stream: [FeaturedComments]
|
|
}
|
|
};
|