0.42
What's Changed
- Add support to double-curly-braces syntax in addition of the vue-like syntax for passing arguments to components by @jpsca in #80
Both of these are now valid:
<Example
columns={{ 2 }}
tabbed={{ False }}
panels={{ {'one': 'lorem', 'two': 'ipsum'} }}
class={{ 'bg-' + color }}
/>
<Example
:columns="2"
:tabbed="False"
:panels="{'one': 'lorem', 'two': 'ipsum'}"
:class="'bg-' + color"
/>
Full Changelog: 0.41...0.42