Hi,
how to bind select tag with model?
This does not work: 
{
tag: 'select',
value: '{#model.selectedItem}',
content: [
{
tag: 'option',
content: 'item_1',
props: {
value: 'item_1',
}
},
{
tag: 'option',
content: 'item_2',
props: {
value: 'item_2',
}
},
{
tag: 'option',
content: 'item_3',
props: {
value: 'item_3',
}
},
],
}