heyujie
2022-05-05 4c2c3361468f37e3af1a993af8d0185964dccf56
1
2
3
4
5
6
7
8
9
// 引入组件
import ImageShow from "@/components/subComponents/ImageShow.vue";
// 创建个空对象
// 设置安装方法
ImageShow.install = function(Vue) {
  Vue.component("ImageShow", ImageShow);
};
// 导出对象
export default ImageShow;