1.0.6 • Published 2 years ago

@nkiwi/vdom-launch-editor v1.0.6

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

@nk/vdom-launch-editor

安装

npm i -D @nk/vdom-launch-editor

用法

vue-cli版本:@vue/cli 4.5.3

const vdomLaunchEditorPlugin = require('@nk/vdom-launch-editor/dist/plugin').default

module.exports = {
  chainWebpack: config => {


      config.module
        .rule('vue')
        .use('vdomLaunchEditorLoader')
        .loader('@nk/vdom-launch-editor')
        .after('vue-loader')
        .end()
      config.plugin('vdomLaunchEditorPlugin')
        .use(vdomLaunchEditorPlugin)
  }
}