import { createApp } from 'vue/dist/vue.esm-bundler.js';
基于控制台中Vue建议的解决方案
[Vue warn]: 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".
at <App>
2条答案
按热度按时间xwbd5t1u1#
当然,您可以将Vue用作现有HTML页面的小部件,以填充内容或使其更具交互性。
您将需要一个专用的HTML容器元素,如
<body>
中的<div id="app">
,不过Vue可以挂载到。超文本:
通过CDN将Vue加载到您的页面:
自定义JS以配置、创建Vue示例并将其装载到
<div id="app">
:rnmwe5a22#
如果您想在现有HTML页面中使用Vue,并安装npm和webpack,则必须更改代码中的导入。
代替
使用
基于控制台中Vue建议的解决方案
在Vue文档中也有一条注解,请访问https://v3.ru.vuejs.org/guide/installation.html#with-a-bundler