关于[Vue warn]: You are using the runtime-only build of Vue where the templa...解决

在学习vue的过程中,我做了很简单的demo,结果它报了这种摸不着头脑的错,在报错信息中才发现有runtime-only和compiler-included两种模式。
我百度了一下出现的原因以及报错的解决方法

vue.runtime.esm.js?2b0e:619 [Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.
在这里插入图片描述
网上的解决方法一:
更改webpack的配置文件
而我只用了vue-cli来建立工程,没有那个相应的配置文件,方法一放弃
网上的解决方法二:
新建一个vue.config,js文件,

module.exports = {
  runtimeCompiler: true
  }

我写了没有用,不知道哪里的问题

网上解决方法三:

module.exports= {
    configureWebpack: {
        resolve: {
            alias: {
                'vue$': 'vue/dist/vue.esm.js'
            }
        }
    }
}

这个方法我是有效的

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值