Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
Merge pull request #228 from asigloo/bugfix/camelcase-component-issue
Browse files Browse the repository at this point in the history
Pascalcase Component naming
  • Loading branch information
alvarosabu authored Jan 25, 2021
2 parents c3db26f + 9a74696 commit 9742982
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demos/vue-3/src/views/Basic.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class="absolute inset-0 bg-gradient-to-r from-blue-400 to-green-200 shadow-xl transform -skew-y-3 sm:skew-y-0 sm:-rotate-3 sm:rounded-3xl"
></div>
<div class="relative card p-6 bg-white">
<dynamic-form
<DynamicForm
:form="form"
@submitted="handleSubmit"
@change="valueChanged"
Expand Down
2 changes: 1 addition & 1 deletion src/dynamicForms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function createDynamicForms(
install(app: App) {
const self = this;

app.component('dynamic-form', DynamicForm);
app.component('DynamicForm', DynamicForm);
app.provide(dynamicFormsSymbol, self);
},
};
Expand Down

0 comments on commit 9742982

Please sign in to comment.