我想创建一个默认具有ngNonBindable属性的组件。这是它的简化版本:
@Component({
selector: 'non-bindable',
host: {
ngNonBindable: 'true'
}
})
class NonBindableComponent {}
<!-- And use it in your app.component.html -->
<non-bindable>Helo {{name}}!</non-bindable>
预期显示:
Helo {{name}}!
然而,它仍会插入{{name}}并显示:
Hello !
我知道我可以在app.component.html
上执行此操作<non-bindable ngNonBindable>Helo {{name}}!</non-bindable>
有没有办法做到这一点所以我不必每次使用组件时都添加ngNonBindable?