Skip to content

Commit c031b77

Browse files
committed
fix: fix component name
1 parent 3c2184e commit c031b77

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ export default class AdapTableWrapper {
1616
static install(Vue: typeof _Vue, options?: AdapTableOptions) {
1717
this.options = options || {}
1818

19-
Vue.component(AdapOrderby.name, AdapOrderby)
20-
Vue.component(AdapPagination.name, AdapPagination)
21-
Vue.component(AdapSearchfield.name, AdapSearchfield)
19+
Vue.component('AdapOrderby', AdapOrderby)
20+
Vue.component('AdapPagination', AdapPagination)
21+
Vue.component('AdapSearchfield', AdapSearchfield)
2222
}
2323
}
2424

0 commit comments

Comments
 (0)