-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Description
- it seems that https://github.com/AngularClass/angular-seed no longer contains the angular seed project, but now is a vue.js repo.
- the information in the readme contradicts somewhat to what is stated here https://github.com/angular/angular-cli/wiki/stories-configure-hmr
- the info in the readme seems to be somewhat outdated.
- my component state is lost when working with the description in https://github.com/angular/angular-cli/wiki/stories-configure-hmr
From looking at the video, it is suggested that the component state should be maintained. However when using a trivial example
import { Component } from '@angular/core';
import {HmrState} from 'angular2-hmr';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'app works!';
@HmrState counter = 0;
increment() {
this.counter = this.counter + 1;
return false;
}
}
and I change anything in app.component.html then the counter is reset to 0 after saving.
So
a) is the info in https://github.com/angular/angular-cli/wiki/stories-configure-hmr wrong?
b) should the component state be maintained automatically?
c) it would help if the seed project still existed
peterkrieg, ElvisVern, helmuthdu, artemzakharov, bamtron5 and 2 more
Metadata
Metadata
Assignees
Labels
No labels