using vue.js, is it possible to set a custom attribute name, instead of attribute value? the below code doesn't seem to work. it will render the mustache
pseudo code:
<template v-for="item in list">
<div myattr{{item.name}}="something">{{item.desc}}</div>
</template>
any help greatly appreciated.