0.1.6 • Published 2 years ago

@vue3-oop/jsx-hot-loader v0.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@vue3-oop/jsx-hot-loader

Tweak Vue components written in JSX in real time.

Usage

// webpack.config.js
module.exports = {
  // ...
  module: {
    loaders: [
      // Enable HMR for JSX.
      {
        test: /\.jsx$/,
        use: ["babel-loader", "@vue3-oop/jsx-hot-loader"],
      },
      // Remember to use babel on the rest of the JS files.
      {
        test: /\.js$/,
        use: "babel-loader",
      },
    ],
  },
};