0.1.4 • Published 3 years ago

@ant-design-vue/vue-jsx-hot-loader v0.1.4

Weekly downloads
12
License
MIT
Repository
github
Last release
3 years ago

@ant-design-vue/vue-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", "@ant-design-vue/vue-jsx-hot-loader"],
      },
      // Remember to use babel on the rest of the JS files.
      {
        test: /\.js$/,
        use: "babel-loader",
      },
    ],
  },
};