<template>
<vhead></vhead>
<menu></menu>
</template>
<script>
import vhead from './head'
import menu from './nav'
export default {
name: 'home',
components: {vhead, menu}
}
</script>
<style>
html, body {
position: relative;
height: 100%;
}
body {
background-color: #e5e5e5;
}
</style>
多个组件是这种形式引入吗?我这里一直报错,不知道什么原因
可以看报错信息里面最长的一行,提示需要包裹在一个根节点里面