2019-01-12 11:33:27 +08:00
|
|
|
import warning from '../_util/warning';
|
2019-08-28 10:50:19 +08:00
|
|
|
import Base from '../base';
|
2018-11-17 15:57:38 +08:00
|
|
|
|
|
|
|
const Icon = {
|
|
|
|
name: 'AIcon',
|
2020-03-23 18:42:39 +08:00
|
|
|
render() {
|
|
|
|
warning(false, 'Icon', 'Empty Icon');
|
|
|
|
return null;
|
2018-11-17 15:57:38 +08:00
|
|
|
},
|
2019-01-12 11:33:27 +08:00
|
|
|
};
|
2018-11-17 15:57:38 +08:00
|
|
|
|
2018-09-19 13:21:57 +08:00
|
|
|
/* istanbul ignore next */
|
2019-01-12 11:33:27 +08:00
|
|
|
Icon.install = function(Vue) {
|
2019-08-28 10:50:19 +08:00
|
|
|
Vue.use(Base);
|
2019-01-12 11:33:27 +08:00
|
|
|
Vue.component(Icon.name, Icon);
|
|
|
|
};
|
2018-09-19 13:21:57 +08:00
|
|
|
|
2019-01-12 11:33:27 +08:00
|
|
|
export default Icon;
|