mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 08:23:47 +09:00
28 lines
711 B
Markdown
28 lines
711 B
Markdown
### VCardSocial
|
|
|
|
The `<VCardSocial />` component is a enhamcement and port to Vue
|
|
of the classic bulma card component, a classy and easy way
|
|
to display post-like 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>
|
|
<VCardSocial
|
|
title="Featured Tweet"
|
|
network="twitter"
|
|
avatar="https://media.cssninja.io/content/avatars/19.jpg"
|
|
username="@gretak"
|
|
:hashtags="['#bulmaio', '#css', '#responsive']"
|
|
share-label="Retweet"
|
|
like-label="Like"
|
|
>
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus nec iaculis mauris.
|
|
</VCardSocial>
|
|
</template>
|
|
```
|
|
|
|
<!--/code-->
|