23 lines
537 B
JavaScript
23 lines
537 B
JavaScript
import ngModule from '../module';
|
|
import Section from 'salix/components/section';
|
|
|
|
export default class Controller extends Section {
|
|
$onInit() {
|
|
if (this.$params.emailConfirmed)
|
|
this.vnApp.showSuccess(this.$t('Email verified successfully!'));
|
|
}
|
|
|
|
onSubmit() {
|
|
this.$.watcher.submit()
|
|
.then(() => this.card.reload());
|
|
}
|
|
}
|
|
|
|
ngModule.component('vnUserBasicData', {
|
|
template: require('./index.html'),
|
|
controller: Controller,
|
|
require: {
|
|
card: '^vnUserCard'
|
|
}
|
|
});
|