https://github.com/vuecomponent/vue-jsx-hot-loader
Tweak Vue components written in JSX in real time.
https://github.com/vuecomponent/vue-jsx-hot-loader
Last synced: 5 months ago
JSON representation
Tweak Vue components written in JSX in real time.
- Host: GitHub
- URL: https://github.com/vuecomponent/vue-jsx-hot-loader
- Owner: vueComponent
- License: mit
- Created: 2020-09-12T14:45:08.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T17:48:01.000Z (almost 2 years ago)
- Last Synced: 2025-06-09T00:33:22.029Z (6 months ago)
- Language: TypeScript
- Size: 254 KB
- Stars: 18
- Watchers: 2
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @ant-design-vue/vue-jsx-hot-loader
Tweak Vue components written in JSX in real time.
## Usage
```js
// webpack.config.js
module.exports = {
// ...
module: {
loaders: [
// Enable HMR for JSX.
{
test: /\.jsx$/,
use: ["babel-loader", "@ant-design-vue/vue-jsx-hot-loader"],
},
// Remember to use babel on the rest of the JS files.
{
test: /\.js$/,
use: "babel-loader",
},
],
},
};
```