How can I pass an array to a component in Angular 1 without being inside a controller (using a component-only approach)? Currently, my starting point is:
<user-list users="users"></user-list>
The 'users' variable is a JavaScript array. However, this setup is not functioning as expected. Any suggestions on how to make it work seamlessly?