VUE SFC PLAYGROUND
Currently I support kebab & camel cases like that:
import { h } from 'vue';
export default function Bool({isTrue, 'is-true': istrue = isTrue}, {slots}){
return h('div', istrue);
}
Looks ugly, any option how to make to better (by the docs) ?