meixioacomponent 0.5.23 → 0.5.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meixioacomponent",
3
- "version": "0.5.23",
3
+ "version": "0.5.24",
4
4
  "private": false,
5
5
  "author": "YuRi",
6
6
  "main": "lib/meixioacomponent.common.js",
@@ -1,5 +1,5 @@
1
1
  import { MeixiOaComponent } from "./components";
2
- export declare class Icon extends MeixiOaComponent {
2
+ export declare class baseIcon extends MeixiOaComponent {
3
3
  // 指定icon 前缀 是使用element 还是 iconFont内的资源
4
4
  iconClass: string
5
5
  // 是否开启点击事件
@@ -1,6 +1,6 @@
1
1
  import Vue, { PluginObject } from 'vue'
2
2
 
3
- import { Icon } from "./baseIcon"
3
+ import { baseIcon } from "./Icon"
4
4
 
5
5
 
6
6
  export interface InstallationOptions {
@@ -14,4 +14,4 @@ export function install(vue: typeof Vue, options: InstallationOptions): void
14
14
 
15
15
 
16
16
 
17
- export class baseIcon extends Icon { }
17
+ export class Icon extends baseIcon { }