/ stream.nieuweinstituut.nl / node_modules / @vue / babel-sugar-inject-h /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]dist/2 years ago -  
[TXT]README.md40 years ago1.0Kd768d73 docs [كارل مبارك]
[   ]package.json2 years ago2.3K3e510ca test new git [كارل مبارك]
README.md

@vue/babel-sugar-inject-h

Syntactic sugar for automatic h inject in JSX.

Babel Compatibility Notes

Usage

Install the dependencies:

# for yarn:
yarn add @vue/babel-sugar-inject-h
# for npm:
npm install @vue/babel-sugar-inject-h --save

In your .babelrc:

{
  "plugins": ["@vue/babel-sugar-inject-h"]
}

However it is recommended to use the configurable preset instead.

Details

This plugin automatically injects h in every method that has JSX. By using this plugin you don't have to always specifically declare h as first parameter in your render() function.

// Without @vue/babel-sugar-inject-h
export default {
  render (h) {
    return <button />
  }
}

// With @vue/babel-sugar-inject-h
export default {
  render () {
    return <button />
  }
}
Apache/2.4.38 (Debian) Server at www.karls.computer Port 80