云盘
志元云盘
备份云盘
Home
/
志元云盘
/
webdav
/
sync
/
c
/
vue-modbus
/
modbus-project
/
node_modules
/
@vue
/
babel-sugar-inject-h
File
OriginalPic
Thumbnails
CopyAllDownloadUrl
EditTime
Size
dist
2024-08-14 17:13:29
1.01 KB
package.json
2024-07-14 16:19:05
1.28 KB
README.md
2024-07-14 16:19:05
1009 B
## @vue/babel-sugar-inject-h Syntactic sugar for automatic `h` inject in JSX. ### Babel Compatibility Notes - This repo is only compatible with Babel 7.x, for 6.x please use [vuejs/babel-plugin-transform-vue-jsx](https://github.com/vuejs/babel-plugin-transform-vue-jsx) ### Usage Install the dependencies: ```sh # for yarn: yarn add @vue/babel-sugar-inject-h # for npm: npm install @vue/babel-sugar-inject-h --save ``` In your `.babelrc`: ```json { "plugins": ["@vue/babel-sugar-inject-h"] } ``` However it is recommended to use the [configurable preset](../babel-preset-jsx/README.md) 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. ```js // Without @vue/babel-sugar-inject-h export default { render (h) { return
} } // With @vue/babel-sugar-inject-h export default { render () { return
} } ```
2025-08-29 22:53:20 Friday 216.73.216.167 Runningtime:0.036s Mem:1.47 MB