为什么不存在vue组件渲染?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么不存在vue组件渲染?相关的知识,希望对你有一定的参考价值。
为什么此Vue模板呈现? h(App2),但是App2不存在吗?怎么了?非常感谢您的帮助。
index.html
<body>
<div id="app"></div>
</body>
App0.vue
<template>
<div>
Hi there!
</div>
</template>
<script>
export default
name: "App1"
</script>
main.js
import Vue from 'vue';
import App2 from './App0';
new Vue(
el: '#app',
render: h => h(App2)
);
答案
只需添加components
选项:
new Vue(
el: '#app',
components: App2 ,
render: h => h(App2)
);
以上是关于为什么不存在vue组件渲染?的主要内容,如果未能解决你的问题,请参考以下文章