pixsy/node_modules/pug/test/cases/attrs.colon.pug

10 lines
349 B
Plaintext
Raw Normal View History

2017-12-22 17:22:08 +00:00
//- Tests for using a colon-prefexed attribute (typical when using short-cut for Vue.js `v-bind`)
div(:my-var="model")
span(v-for="item in items" :key="item.id" :value="item.name")
span(
v-for="item in items"
:key="item.id"
:value="item.name"
)
a(:link="goHere" value="static" :my-value="dynamic" @click="onClick()" :another="more") Click Me!