bind.js 237 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 /* @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' : '' })` } }