Skip to content

Commit

Permalink
fix(vue): manual components have correct name
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Apr 11, 2023
1 parent 0fe46ff commit c6ad0d6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/vue/src/components/IonApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ export const IonApp = /*@__PURE__*/ defineComponent((_, { attrs, slots }) => {
};
});

IonApp.name = "IonApp";

/**
* When rendering user components inside of
* ion-modal, or ion-popover the component
Expand Down
2 changes: 2 additions & 0 deletions packages/vue/src/components/IonBackButton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,5 @@ export const IonBackButton = /*@__PURE__*/ defineComponent(
};
}
);

IonBackButton.name = "IonBackButton";
2 changes: 2 additions & 0 deletions packages/vue/src/components/IonIcon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,5 @@ export const IonIcon = /*@__PURE__*/ defineComponent({
};
},
});

IonIcon.name = "IonIcon";
2 changes: 2 additions & 0 deletions packages/vue/src/components/IonNav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ export const IonNav = /*@__PURE__*/ defineComponent(() => {
return h("ion-nav", { delegate }, views.value);
};
});

IonNav.name = "IonNav";

0 comments on commit c6ad0d6

Please sign in to comment.