vue-email / vue-email

💌 Write email templates with vue
https://vuemail.net
MIT License
744 stars 32 forks source link

don't show props in html #115

Closed veryPeriCloud closed 6 months ago

veryPeriCloud commented 7 months ago

Hi! When I render html with useRender in this html props is undefined: image

Result: image

What could be the problem?

kenechukwuJosiah commented 7 months ago

@veryPeriCloud, could you please share your template as well so that I can better understand what the problem is.

veryPeriCloud commented 7 months ago

In page: image

In template: image image

I tried to add props with default value and without, but result is same.

Dave136 commented 7 months ago

Hi @veryPeriCloud, you need to pass the props as follows:

const html = await useRender(AuthAction, { props: { preview: "", href: "" }});
veryPeriCloud commented 7 months ago

oh, thank you!