import { IntfPlatform } from '@imedx/ics-imedx-chromely-plugin-intf-platform' import XXXXInterface from './interface-core' import constants from './constants' /** * 安装组件 * @param Vue * @param opts */ const install = function(Vue: any, opts = {}) { // 注册核心接口或者实现接口 IntfPlatform.register(constants.INTERFACE_CODE, XXXXInterface, {}) } /** * 卸载组件 * @param Vue * @param opts */ const uninstall = function(Vue: any, opts = {}) {} export default { install, uninstall }