Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

OvidiuSPopescu's avatar

send as props from file php to vue file

I wanted to send as props from file php (wordpress), in array

File.php $props =[ ‘login-message’ => ‘Message text’, ‘username_placeholder’ => ‘This is a username placeholder’ ] <login-form : props=”< ? php echo json_encode($props) ? >" />

File.vue props: { return { props: this.props } } How can I do this? Thanks

0 likes
0 replies

Please or to participate in this conversation.