[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

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐