b25376a740b36a7b42c7b2b8c08a89cf96c6424287c83a90e6add7b4d09cc852bc94ff87d9911e2b6ede04fe38e9dc1dcd5b6da13354c4770c698207c9e34e 205 B

123456789
  1. /* @flow */
  2. import { addProp } from 'compiler/helpers'
  3. export default function text (el: ASTElement, dir: ASTDirective) {
  4. if (dir.value) {
  5. addProp(el, 'textContent', `_s(${dir.value})`, dir)
  6. }
  7. }