Closed andaralex closed 7 years ago
Error: Template parse errors: rating' is not a known element: . If 'rating' is an Angular component, then verify that it is part of this module. . To allow any element add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. ("
Put Ionic2RatingModule on the module of the page where you want to use the ratingbar, like this.
import { NgModule } from '@angular/core'; import { IonicPageModule } from 'ionic-angular'; import { EvaluacionPage } from './evaluacion'; import { Ionic2RatingModule } from 'ionic2-rating'; @NgModule({ declarations: [ EvaluacionPage, ], imports: [ IonicPageModule.forChild(EvaluacionPage), Ionic2RatingModule ], exports: [ EvaluacionPage ] }) export class EvaluacionPageModule {}
Error: Template parse errors: rating' is not a known element: . If 'rating' is an Angular component, then verify that it is part of this module. . To allow any element add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. ("
Put Ionic2RatingModule on the module of the page where you want to use the ratingbar, like this.