After browsing through this interesting discussion, I decided to create a web component:
<my-vue-web-comp [userId]="1"></my-vue-web-comp>
Initially, everything was working smoothly in Angular when I assigned a static property. However, things took a turn when I attempted to set the property dynamically:
<my-vue-web-comp [userId]="{{ usersInfo.userId }}"></my-vue-web-comp>
Unfortunately, my userId property ended up being empty within the web-component. It seems like the conversion of the web component is happening during compilation rather than at runtime.
Does anyone have any suggestions on how to resolve this issue?