In this component: ```html <button {{ attrs }}>{{ slot }}</button> ``` I want to pass a data attribute to it: ```html <c-button data-something='{"name": "John", "address": "1234 The Road"}'>Hello</c-button> ``` However, the component gets rendered as: ```html <button data-something="" {"name":="" "john",="" "address":="" "1234"="" the="" road"}"="">hello</button> ``` Is this a bug or am I passing the attribute the wrong way?