Vue-loader

Posted zhaodz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue-loader相关的知识,希望对你有一定的参考价值。

1.安装

npm install -D vue-loader vue-template-compiler

2.配置webpack.config.js

const VueLoaderPlugin = require(vue-loader/lib/plugin)

module.exports = {
  module: {
    rules: [
      // ... other rules
      {
        test: /.vue$/,
        loader: vue-loader
      }
    ]
  },
  plugins: [
    // make sure to include the plugin!
    new VueLoaderPlugin()
  ]
}

3.main.js文件

import Vue from vue
import App from ./App.vue

var vm = new Vue({
el: #app,
render:f=>f(App),
// template:‘<App/>‘,
// components:{
//     App
// }
})

 

以上是关于Vue-loader的主要内容,如果未能解决你的问题,请参考以下文章

vue2.0有哪些变化

使用 vue 2、路由器和 vue-loader 进行引导

Vue-loader

vue-loader:如何在 webpack 4 和 vue-cli3 中使用 vue-loader v15

vue-loader:找不到模块

vue的.vue文件是怎么run起来的(vue-loader)