mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 06:53:29 +09:00
68 lines
1.7 KiB
Markdown
68 lines
1.7 KiB
Markdown
---
|
|
disable_example: true
|
|
---
|
|
|
|
### Structured Card
|
|
|
|
Vuero cards can have a small flex header where you can put
|
|
come content. Check the markup for more details about usage.
|
|
|
|
<!--code-->
|
|
|
|
```vue
|
|
<template>
|
|
<VCard radius="small" elevated>
|
|
<div class="card-head">
|
|
<VBlock
|
|
title="Greta K."
|
|
subtitle="Sales Manager"
|
|
center
|
|
class="no-margin"
|
|
>
|
|
<template #icon>
|
|
<Tippy
|
|
class="has-help-cursor"
|
|
interactive
|
|
:offset="[0, 10]"
|
|
placement="top-start"
|
|
>
|
|
<VAvatar
|
|
picture="https://media.cssninja.io/content/avatars/19.jpg"
|
|
badge="/images/icons/flags/germany.svg"
|
|
/>
|
|
<template #content>
|
|
<UserPopoverContent
|
|
:user="{
|
|
id: 19,
|
|
avatar: 'https://media.cssninja.io/content/avatars/19.jpg',
|
|
badge: '/images/icons/flags/germany.svg',
|
|
username: 'Greta K.',
|
|
fullName: 'Greta Kroppfer',
|
|
initials: 'GK',
|
|
color: 'h-yellow',
|
|
location: 'Los Angeles, CA',
|
|
position: 'Sales Manager',
|
|
bio: 'This is a nice user description that we can use as demo content.',
|
|
}"
|
|
/>
|
|
</template>
|
|
</Tippy>
|
|
</template>
|
|
</VBlock>
|
|
|
|
<UserCardDropdown />
|
|
</div>
|
|
|
|
<div class="card-inner">
|
|
<p>
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quibusnam praeteritis? At
|
|
multis se probavit. Quoniam, si dis placet, ab Epicuro loqui discimus. Et ille
|
|
ridens.
|
|
</p>
|
|
</div>
|
|
</VCard>
|
|
</template>
|
|
```
|
|
|
|
<!--/code-->
|