-
Notifications
You must be signed in to change notification settings - Fork 0
Add card component #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Co-Authored-By: Benjamin Schmidt <[email protected]>
fredericobormann
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks very good, one little change is needed to make the cardTitle work :)
| --> | ||
| <template> | ||
| <div class="apos-card"> | ||
| <h3 class="apos-card-title">{{ this.CardTitle }}</h3> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <h3 class="apos-card-title">{{ this.CardTitle }}</h3> | |
| <h3 class="apos-card-title">{{ this.cardTitle }}</h3> |
cardTitle is spelled lowercase in props
| props: { | ||
| CardTitle: String | ||
| cardTitle: String |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vorschlag: Nur title, dass es der Kartentitel ist, wird durch die Komponente selbst offensichtlich.
This PR adds a card component.