attrs.colon.pug 349 B

123456789
  1. //- Tests for using a colon-prefexed attribute (typical when using short-cut for Vue.js `v-bind`)
  2. div(:my-var="model")
  3. span(v-for="item in items" :key="item.id" :value="item.name")
  4. span(
  5. v-for="item in items"
  6. :key="item.id"
  7. :value="item.name"
  8. )
  9. a(:link="goHere" value="static" :my-value="dynamic" @click="onClick()" :another="more") Click Me!