1.0.3 • Published 5 years ago

goto-vue-component-loader v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

Surport IDE

  • vscode
  • sublime

Installation

  npm install -g goto-vue-component-loader

Usage

Note This loader only surport Development Enviroment。

webpack.dev.config.js:

  const GotoVueComponentLoaderPlugin = require('goto-vue-component-loader/plugin');

  ...
  module: {
            rules: [{
                test: /.vue$/,
                loader: 'goto-vue-component-loader',
                exclude: [/node_modules/],
                enforce: 'pre'
            }]
            ...
        },

  ...
  plugins: [new GotoVueComponentLoaderPlugin()]
  ...

Other