Set property dynamically in Vue component for angular
Asked Answered
R

1

0

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?

Rhyolite answered 30/8, 2021 at 15:31 Comment(0)
A
0

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>

Academicism answered 30/8, 2021 at 15:42 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.