This repository was archived by the owner on Mar 8, 2019. It is now read-only.

Description
given this template
<div :style="props.style" :class="props.class"></div>
we should be able to describe both properties without risking a collision.
I would se a model along those lines
<!-- @prop style - the style of my div --> <!-- @prop class - a class for my div --> <div :style="props.style" :class="props.class"></div>