It should be possible to do this: ```html <div class='widget-container'> <Widget ref:widget bind:foo='bar' baz='42' thing='{{dynamic}}'/> </div> <script> import Widget from './Widget.html'; export default { components: { Widget } }; </script> ```