Is there some way to make this work? ``` javascript Vue.component('my-select', { template: '<select options="options"></select>', props: ['options'] }) ``` Then on my page use: ``` html <my-select options="[{text: 'Cats', value: 'cats'}]"></my-select> ``` More generally, is there some way to pass object/arrays to a custom component directly from the view?