Skip to content

Commit f6cd6c5

Browse files
BenMuschtangbc
authored andcommitted
Fix typo in class name (#16)
* Fix typo in class name * Update README.md
1 parent 272307e commit f6cd6c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ The `<Item>` component is included inside but defined outside the `<virtualList>
8383
```
8484

8585
```javascript
86-
// Global name as `VirutalScrollList`
87-
Vue.component('virtual-list', VirutalScrollList)
86+
// Global name as `VirtualScrollList`
87+
Vue.component('virtual-list', VirtualScrollList)
8888

8989
new Vue({
9090
el: '#app',

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
} else {
99
root[ns] = factory(root['Vue'])
1010
}
11-
})(this, 'VirutalScrollList', function (Vue2) {
11+
})(this, 'VirtualScrollList', function (Vue2) {
1212
if (typeof Vue2 === 'object' && typeof Vue2.default === 'function') {
1313
Vue2 = Vue2.default
1414
}

0 commit comments

Comments
 (0)