bind.js 237 Bytes
/* @flow */

export default function bind (el: ASTElement, dir: ASTDirective) {
  el.wrapData = (code: string) => {
    return `_b(${code},'${el.tag}',${dir.value}${
      dir.modifiers && dir.modifiers.prop ? ',true' : ''
    })`
  }
}