--- App.vue--- components --- Nav --- Nav.vue
以上是目录,我想在App.vue中引入Nav.vue
<template> <div> 我是Vue.app! <nav></nav> </div></template><script>import nav from './components/Nav/Nav';export default { components: { nav }};</script><style lang="less"> </style>
<template> <div id="nav">我是NAV</div></template><script> export default {};</script><style> </style>
这样并没有成功?问题出在哪
慕少森
相关分类