mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 07:23:50 +09:00
32 lines
897 B
Markdown
32 lines
897 B
Markdown
### VCardMedia
|
|
|
|
The `<VCardMedia />` component is a enhamcement and port to Vue
|
|
of the classic bulma card component, a classy and easy way
|
|
to display media content. The component has several props
|
|
to pass in the content you want to display.
|
|
Check the code example for more details.
|
|
|
|
<!--code-->
|
|
|
|
```vue
|
|
<template>
|
|
<VCardMedia
|
|
image="https://media.cssninja.io/content/photos/apps/1.jpg"
|
|
avatar="https://media.cssninja.io/content/avatars/19.jpg"
|
|
badge="/images/icons/flags/germany.svg"
|
|
title="Greta K."
|
|
subtitle="Sales Manager"
|
|
>
|
|
<p class="pb-4">
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ego vero isti, inquam,
|
|
permitto. Id Sextilius factum negabat. Apparet statim, quae sint officia, quae
|
|
actiones. Sed hoc sane concedamus...
|
|
</p>
|
|
|
|
<a class="action-link" tabindex="0">Read More</a>
|
|
</VCardMedia>
|
|
</template>
|
|
```
|
|
|
|
<!--/code-->
|