当前位置: 代码迷 >> 综合 >> vue3[Vue warn]: Component provided template option but runtime compilation is not supported in this
  详细解决方案

vue3[Vue warn]: Component provided template option but runtime compilation is not supported in this

热度:67   发布时间:2023-09-27 13:28:35.0

[Vue warn]: Component provided template option but runtime compilation is not supported in this build of Vue.

原因是目前版本的vue组件提供了模板选项,但在此版本的Vue中不支持运行时编译

所以需要配置运行时编译器Vue 构建版本

vue.config.js配置一个属性runtimeCompiler: true

const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({transpileDependencies: true,runtimeCompiler: true
})

设置完之后需要重新启动项目

  相关解决方案