公告板
版本库
filestore
活动
搜索
登录
web
/
saas-web
saas
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Merge branch 'master' of http://192.168.5.5:10010/r/web/saas-web
heyujie
2022-04-22
4707139df757e848b8746f9d7dcb837cdf5d78c3
[web/saas-web.git]
/
src
/
scripts
/
component.js
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;