I need opportunity to declare component as virtual. E.g
awesome-button.html
<template>
<button><slot /></button>
</template>
my-awesome-button.html
<template>
<awesome-button>...</awesome-button>
</template>
Result will be
<my-awesome-button>
<awesome-button>...</awesome-button>
</my-awesome-button>
Will be cool if there will be such API to make output without additional wrap