// 引入组件 import ImageShow from "@/components/subComponents/ImageShow.vue"; // 创建个空对象 // 设置安装方法 ImageShow.install = function(Vue) { Vue.component("ImageShow", ImageShow); }; // 导出对象 export default ImageShow;