refactor(components): remove protected from lifecycle event

This commit is contained in:
Brandy Carney
2017-11-20 13:01:49 -05:00
parent 3accafcc3c
commit 5c214c3c46

View File

@ -25,7 +25,7 @@ export class App {
@Prop({ context: 'config' }) config: Config; @Prop({ context: 'config' }) config: Config;
protected componentWillLoad() { componentWillLoad() {
this.modeCode = this.config.get('mode'); this.modeCode = this.config.get('mode');
this.useRouter = this.config.getBoolean('useRouter', false); this.useRouter = this.config.getBoolean('useRouter', false);
this.hoverCSS = this.config.getBoolean('hoverCSS', true); this.hoverCSS = this.config.getBoolean('hoverCSS', true);