Skip to content

Commit

Permalink
Merge branch 'master' into tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
zmm-fe committed Sep 10, 2020
2 parents fe9d895 + 9b39ccf commit 6b73d73
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Vue.use(ElButton)
- ElLink
- ElIcon
- ElBreadcrumb
- ElBreadcrumbItem

## Join Discussion Group

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "element3",
"version": "0.0.9",
"version": "0.0.10",
"description": "A Component Library for Vue3",
"main": "dist/element3-ui.esm.js",
"module": "dist/element3-ui.esm.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/breadcrumb-item/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ElBreadcrumbItem from '../breadcrumb/BreadcrumbItem'
import ElBreadcrumbItem from '../breadcrumb/BreadcrumbItem.vue'

/* istanbul ignore next */
ElBreadcrumbItem.install = function (app) {
Expand Down
14 changes: 12 additions & 2 deletions src/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import ElProgress from '../packages/progress'
import ElLink from '../packages/link'
import ElIcon from '../packages/icon'
import ElBreadcrumb from '../packages/breadcrumb'
import ElBreadcrumbItem from '../packages/breadcrumb-item'
import { version } from '../package.json'

const components = [
Expand All @@ -13,7 +14,8 @@ const components = [
ElProgress,
ElLink,
ElIcon,
ElBreadcrumb
ElBreadcrumb,
ElBreadcrumbItem
]

const install = (app) => {
Expand All @@ -27,6 +29,14 @@ const elementUI = {
install
}

export { ElButton, ElSwitch, ElProgress, ElLink, ElIcon, ElBreadcrumb }
export {
ElButton,
ElSwitch,
ElProgress,
ElLink,
ElIcon,
ElBreadcrumb,
ElBreadcrumbItem
}

export default elementUI

0 comments on commit 6b73d73

Please sign in to comment.