mirror of
https://github.com/wassname/talk.git
synced 2026-07-06 05:17:19 +08:00
12 lines
271 B
JavaScript
12 lines
271 B
JavaScript
import ChangePassword from './containers/ChangePassword';
|
|
import Profile from './containers/Profile';
|
|
import translations from './translations.yml';
|
|
|
|
export default {
|
|
translations,
|
|
slots: {
|
|
profileHeader: [Profile],
|
|
profileSettings: [ChangePassword],
|
|
},
|
|
};
|