attrs.colon.js 398 B

12345
  1. function template(locals) {
  2. var pug_html = "", pug_mixins = {}, pug_interp;
  3. pug_html = pug_html + '<div :my-var="model"></div><span v-for="item in items" :key="item.id" :value="item.name"></span><span v-for="item in items" :key="item.id" :value="item.name"></span><a :link="goHere" value="static" :my-value="dynamic" @click="onClick()" :another="more">Click Me!</a>';
  4. return pug_html;
  5. }