Я работаю с материалом Angular и столкнулся с одной ошибкой, хотя он прекрасно работает со стекаблицем, но не с моим кодом.Ниже приведена ошибка, с которой я столкнулся, я тоже импортировал MatRadioModule.
Uncaught Error: Template parse errors:
Unexpected character "EOF" ("</mat-radio-button>
<mat-radio-button value="2">Option 2</mat-radio-button>
</mat-radio-group[ERROR ->]"): ng:///AppModule/RadioButtonsComponent.html@18:19
at syntaxError (compiler.js:485)
at DirectiveNormalizer._preparseLoadedTemplate (compiler.js:3220)
at eval (compiler.js:3200)
at Object.then (compiler.js:474)
at DirectiveNormalizer._preParseTemplate (compiler.js:3200)
at DirectiveNormalizer.normalizeTemplate (compiler.js:3178)
at CompileMetadataResolver.loadDirectiveMetadata (compiler.js:14908)
at eval (compiler.js:34412)
at Array.forEach (<anonymous>)
at eval (compiler.js:34411)
, а ниже мой HTML-код
<mat-radio-group>
<mat-radio-button value="1">Option 1</mat-radio-button>
<mat-radio-button value="2">Option 2</mat-radio-button>
</mat-radio-group>