[Vuejs]-How to pass array data from Laravel Inertia Js render method to child component from parent component in Vue 3?

0๐Ÿ‘

โœ…

:users="$page['props']['users']" worked.

0๐Ÿ‘

Have you tried <Users title="Hello world" :users="{{ users }}"></Users> in the parent?

(users, not $users)

Leave a comment