Skip to content

Commit 956bee1

Browse files
authored
🔀 Merge pull request #24 from idelsink/master
Register button components using PascalCase Co-authored-by: Saran Tanpituckpong ✅ <4688092+gluons@users.noreply.github.com>
2 parents 817e9c7 + 604666e commit 956bee1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ if (!IS_WEB_BUNDLE) {
3232
function install(vue: typeof Vue, options: Options = { useCache: true }) {
3333
optionsStore.value = options;
3434

35-
vue.component('gh-btns-star', Star);
36-
vue.component('gh-btns-fork', Fork);
37-
vue.component('gh-btns-watch', Watch);
38-
vue.component('gh-btns-follow', Follow);
35+
vue.component('GhBtnsStar', Star);
36+
vue.component('GhBtnsFork', Fork);
37+
vue.component('GhBtnsWatch', Watch);
38+
vue.component('GhBtnsFollow', Follow);
3939
}
4040

4141
if (typeof window !== 'undefined' && window.Vue) {

0 commit comments

Comments
 (0)