Amour1688
4 years ago
committed by
GitHub
61 changed files with 279 additions and 364 deletions
@ -1,10 +1,4 @@
|
||||
import { App } from 'vue'; |
||||
import Avatar from './Avatar'; |
||||
import { withInstall } from '../_util/type'; |
||||
|
||||
/* istanbul ignore next */ |
||||
Avatar.install = function(app: App) { |
||||
app.component(Avatar.name, Avatar); |
||||
return app; |
||||
}; |
||||
|
||||
export default Avatar; |
||||
export default withInstall(Avatar); |
||||
|
@ -1,10 +1,4 @@
|
||||
import { App } from 'vue'; |
||||
import Badge from './Badge'; |
||||
import { withInstall } from '../_util/type'; |
||||
|
||||
/* istanbul ignore next */ |
||||
Badge.install = function(app: App) { |
||||
app.component(Badge.name, Badge); |
||||
return app; |
||||
}; |
||||
|
||||
export default Badge; |
||||
export default withInstall(Badge); |
||||
|
@ -1,9 +1,4 @@
|
||||
import { App } from 'vue'; |
||||
import { Col } from '../grid'; |
||||
/* istanbul ignore next */ |
||||
Col.install = function(app: App) { |
||||
app.component(Col.name, Col); |
||||
return app; |
||||
}; |
||||
import { withInstall } from '../_util/type'; |
||||
|
||||
export default Col; |
||||
export default withInstall(Col); |
||||
|
@ -1,12 +1,6 @@
|
||||
import { App } from 'vue'; |
||||
import Pagination from './Pagination'; |
||||
import { withInstall } from '../_util/type'; |
||||
|
||||
export { PaginationProps, PaginationConfig } from './Pagination'; |
||||
|
||||
/* istanbul ignore next */ |
||||
Pagination.install = function(app: App) { |
||||
app.component(Pagination.name, Pagination); |
||||
return app; |
||||
}; |
||||
|
||||
export default Pagination; |
||||
export default withInstall(Pagination); |
||||
|
@ -1,12 +1,6 @@
|
||||
import { App } from 'vue'; |
||||
import Progress from './progress'; |
||||
import { withInstall } from '../_util/type'; |
||||
|
||||
export { ProgressProps } from './props'; |
||||
|
||||
/* istanbul ignore next */ |
||||
Progress.install = function(app: App) { |
||||
app.component(Progress.name, Progress); |
||||
return app; |
||||
}; |
||||
|
||||
export default Progress; |
||||
export default withInstall(Progress); |
||||
|
@ -1,10 +1,4 @@
|
||||
import { App } from 'vue'; |
||||
import { Row } from '../grid'; |
||||
import { withInstall } from '../_util/type'; |
||||
|
||||
/* istanbul ignore next */ |
||||
Row.install = function(app: App) { |
||||
app.component(Row.name, Row); |
||||
return app; |
||||
}; |
||||
|
||||
export default Row; |
||||
export default withInstall(Row); |
||||
|
@ -1,12 +1,6 @@
|
||||
import { App } from 'vue'; |
||||
import { withInstall } from '../_util/type'; |
||||
import ToolTip from './Tooltip'; |
||||
|
||||
export { TooltipProps } from './Tooltip'; |
||||
|
||||
/* istanbul ignore next */ |
||||
ToolTip.install = function(app: App) { |
||||
app.component(ToolTip.name, ToolTip); |
||||
return app; |
||||
}; |
||||
|
||||
export default ToolTip; |
||||
export default withInstall(ToolTip); |
||||
|
Loading…
Reference in new issue