比如我们需要在文件homeView.vue中引用界面文件Aside.Vue
那么我们只需要在homeView.vue想要的地方添加<Aside></Aside>
就好啦 但是其实还有两个地方要注意
但是我在idea里面写的只要写了<Aside></Aside>其他的就自动补全好了
第一个地方
<script>里面添加import 将Aside引入过来
第二个地方:
components: {Aside},要有这句话。
没啦!试试吧。
比如我们需要在文件homeView.vue中引用界面文件Aside.Vue
那么我们只需要在homeView.vue想要的地方添加<Aside></Aside>
就好啦 但是其实还有两个地方要注意
但是我在idea里面写的只要写了<Aside></Aside>其他的就自动补全好了
第一个地方
<script>里面添加import 将Aside引入过来
第二个地方:
components: {Aside},要有这句话。
没啦!试试吧。