[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
})

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

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐