0.0.1 • Published 7 years ago

vue-hot-typescript-loader v0.0.1

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

vue-hot-typescript-loader

Enable hot module replacement (HMR) on your typescript vue components.

This loader is for Vue components written in .ts. If you are using .vue file, you don't need this loader.

This code is a based on vue-hot-reload-loader.

Installation

# NPM
$ npm install --save-dev vue-hot-typescript-loader

Usage

Webpack

Ensure the webpack entry points for your debug build includes HMR code

module.exports = {
  entry: {
    app: [ 'webpack-hot-middleware/client', './src/app.ts']
  }
}

Update your webpack config to apply vue-hot-typescript-loader after initial compilation has occured

module.exports = {
  module: {
    rules: [{
            test: /\.ts$/,
            use: ['vue-hot-typescript-loader', 'ts-loader'],
            include: path.resolve(__dirname, 'path/to/components')
        }]
  }
}

Source Files

Supports one class per file. As long as the class extends Vue and in turn is exported, it will be created with HMR support at runtime.

es6

import * as Vue from 'vue';

export class MyComponent extends Vue {}
import { default as VueAlias } from 'vue';

export class MyComponent extends VueAlias {}

commonjs

let vue = require('vue'); // commonjs import

class MyComponent extends Vue {}

export default MyComponent;

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments