多个组件重复用

版权声明:博客就当自己记的笔记而已~非常感谢博客大神的帮助,若有无意侵权,请联系我,谢谢 https://blog.csdn.net/qq_32963841/article/details/82020508

这里写图片描述

在src-> assets->js下面写个component.js
格式如下:

import newInfoItem from '../../components/Info';

export default {
   install(Vue,options){
   Vue.component('new-info-item',newInfoItem );
  }
}
然后在main.js里面引用该component.js
import component from './assets/js/component';

然后在其他页面可以直接使用

<new-info-item></new-info-item>

猜你喜欢

转载自blog.csdn.net/qq_32963841/article/details/82020508
今日推荐