A collection of linked tags.
A Tags component has the following properties:
| Prop | Required | Description |
|---|---|---|
values | yes | Array of tagSchema. |
<script lang="ts">
import { Tags } from '$lib/components/index.js';
const values = [
{ id: 'avatar', label: 'avatarMetaSchema', path: '/docs/schemas/avatar-meta' },
{ id: 'post', label: 'postMetaSchema', path: '/docs/schemas/post-meta' },
{ id: 'tag', label: 'tagMetaSchema', path: '/docs/schemas/tag-meta' }
];
</script>
<Tags {values} />