Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I read this thread and created web-component:

<my-vue-web-comp [userId]="1"></my-vue-web-comp>

It works fine in Angular when I set static prop. But when I try to set property dynamically:

<my-vue-web-comp [userId]="{{ usersInfo.userId }}"></my-vue-web-comp>

my property userId is empty in web-component. It looks like the web component is being converted at compiling and not at runtime.

How can I solve this problem?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
142 views
Welcome To Ask or Share your Answers For Others

1 Answer

I think in Angular you can only do this

<my-vue-web-comp [userId]="usersInfo.userId"></my-vue-web-comp>

or this

<my-vue-web-comp userId="{{ usersInfo.userId }}"></my-vue-web-comp>

if both do not work try this

<my-vue-web-comp user-id="{{ usersInfo.userId }}"></my-vue-web-comp>


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...