58 lines
1.4 KiB
Vue
58 lines
1.4 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>The default slot allows displaying custom content inside a chip.</p>
|
|
</DocSectionText>
|
|
<div class="card">
|
|
<Chip class="pl-0 pr-3">
|
|
<span class="bg-primary border-circle w-2rem h-2rem flex align-items-center justify-content-center">P</span>
|
|
<span class="ml-2 font-medium">PRIME</span>
|
|
</Chip>
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
code: {
|
|
basic: `
|
|
<Chip class="pl-0 pr-3">
|
|
<span class="bg-primary border-circle w-2rem h-2rem flex align-items-center justify-content-center">P</span>
|
|
<span class="ml-2 font-medium">PRIME</span>
|
|
</Chip>
|
|
`,
|
|
options: `
|
|
<template>
|
|
<div class="card">
|
|
<Chip class="pl-0 pr-3">
|
|
<span class="bg-primary border-circle w-2rem h-2rem flex align-items-center justify-content-center">P</span>
|
|
<span class="ml-2 font-medium">PRIME</span>
|
|
</Chip>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
<\/script>
|
|
`,
|
|
composition: `
|
|
<template>
|
|
<div class="card">
|
|
<Chip class="pl-0 pr-3">
|
|
<span class="bg-primary border-circle w-2rem h-2rem flex align-items-center justify-content-center">P</span>
|
|
<span class="ml-2 font-medium">PRIME</span>
|
|
</Chip>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
<\/script>
|
|
`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|