You are using the runtime-only build of Vue where the template compiler is not available. Either pre

这个是引用vue的时候的别名错误
因为在引用vue的时候默认使用的是
You are using the runtime-only build of Vue where the template compiler is not available. Either pre_第1张图片
而报错心事是指用错了文件,因为runtime-only是不包含任何的template的,
而runtime-compile是可以编译template的
只需要在webpack.config.js修改个别名就可以了,代码如下

  resolve:{
    alias:{
      'vue$': 'vue/dist/vue.esm.js'
    }
  }

你可能感兴趣的:(开发报错)