How to pass a string value to a component in angular

https://stackoverflow.com/questions/36220027/how-to-pass-a-string-value-to-a-component-in-angular2


String literals can be passed in different ways:
<component inputField="string"></component>
<component [inputField]="'string'"></component>
<component inputField="{{'string'}}"></component>

Không có nhận xét nào:

URL parameters with React Router

 https://ui.dev/react-router-url-parameters If you're reading this, you're probably familiar with the idea of function parameters. T...