Angular - Components
You wrote this Angular component:
But the
@Component({
selector: 'app-test',
template: `Test
`,
styles: [`p { font-weight: bold; }`],
encapsulation: ViewEncapsulation.ShadowDom
})
export class TestComponent {}But the
p text is not bold in the browser. What is the likely cause?