hero image

孤独的暖阳

死人唯一做的事就是把活着这事给搞砸了 —— 《重返黑夜》

友人帐
友人帐
(◕ᴗ◕✿)
留言板
留言板
欢迎留言☺
vuepress-plugin-background
vuepress-plugin-background
背景插件
老刀的菜谱
老刀的菜谱
b站up主日食记的菜谱
vue3模板渲染模板template不支持编译

报错:Component provided template option but runtime compilation is not supported in this build of Vue. Configure your bundler to alias "vue" to "vue/dist/vue.esm-bundler.js". 翻译:组件提供了模板选项,但此版本的Vue不支持运行时编译。将bundler配置为别名“vue”为“vue/dist/vue.esm-bundler.js”。

import {  createApp  } from "vue";
const component = createApp({  
 template:`<div>test</div>`  
})  
component.mount('#content')

孤独的暖阳...小于 1 分钟前端vue
2
3
4