zhangzengfei
2022-09-19 34b5cb9940cb69d9588b092059bac4cc8baf9bfd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 引入组件
import ImageShow from "@/components/subComponents/ImageShow.vue";
import PwInput from "@/components/subComponents/PwInput.vue";
// 创建个空对象
// 设置安装方法
ImageShow.install = function(Vue) {
  Vue.component("ImageShow", ImageShow);
};
 
PwInput.install = function(Vue) {
  Vue.component("PwInput", PwInput);
};
// 导出对象
export { ImageShow, PwInput };