You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ ] Regression (a behavior that used to work and stopped working in a new release)
[ ] Bug report
[X] Feature request
[ ] Documentation issue or request
[ ] Support request => Please do not submit support request here, instead see https://github.com/NationalBankBelgium/stark/blob/master/CONTRIBUTING.md#got-a-question-or-problem
Current behavior
Html template are not inlined into ui components.
We have to write the html code directly inside the component. @component({
template: ´
Hello World
´
})
What is the motivation / use case for changing the behavior?
We should write the html inside the html template and mention it in the component declaration. @component({
templateUrl: "./my-template.html"
})
I'm submitting a...
Current behavior
Html template are not inlined into ui components.
We have to write the html code directly inside the component.
@component({
template: ´
})
What is the motivation / use case for changing the behavior?
We should write the html inside the html template and mention it in the component declaration.
@component({
templateUrl: "./my-template.html"
})
We can do that thanks to enableResourceInlining AOT option.
See: https://github.com/angular/angular/blob/b5be18f4059dc09ee9a3eb22ebd0b1485262e8fa/packages/compiler-cli/src/transformers/api.ts
The text was updated successfully, but these errors were encountered: