Error when lifting page locally

0

I am working with a page created with angle 2, and when downloading the code and trying to raise it locally I get the following error. Any suggestions?

    
asked by Sebastian Garcia Fischer 06.06.2018 в 22:08
source

1 answer

0

The reference errors are usually basic in that they refer, as in this case, to which you are referring (in line 132 of account-plan.ts) to a variable that was not declared.

Without having seen your code, I imagine that the most probable thing is that if you declare the variable at the beginning of the class, the error disappears:

public accounting_1: any;
    
answered by 06.06.2018 в 22:14