[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
})
设置完之后需要重新启动项目