Feb 4th 2019 +1 #1 I'm looking to use Vue with the Forms add-on, however, when adding the v-model directive to a perch form input, it gets stripped out. I know it's possible to pass through class names and data attributes but was wondering if you'd consider extending this to achieve the above? Thanks Toby
Feb 4th 2019 #3 Yes, and you could get away with just allowing v- but lots of devs tend to use the shorthand for v-bind or v-on: Code <!-- full v-bind syntax --> <a v-bind:href="url"></a> <!-- shorthand --> <a :href="url"></a> <!-- full v-on syntax --> <a v-on:click="doSomething"></a> <!-- shorthand --> <a @click="doSomething"></a> Display More