LinkEmbedCard
A Vue component.
File: src/components/embeds/LinkEmbedCard.vue
Overview
Props
| Name | Type | Default | Required | Description |
|---|---|---|---|---|
payload | EmbedPayload | undefined | ✅ | No description |
Props Details
payload
No description available.
- Type:
EmbedPayload - Required: Yes
- Default:
undefined
Events
| Name | Parameters | Description |
|---|---|---|
load | unknown | No description |
Event Details
load
No description available.
Parameters: unknown
Slots
This component has no slots.
Methods
This component exposes no public methods.
Usage Example
vue
<template>
<LinkEmbedCard
:payload="undefined"
@load="handleLoad" />
</template>
<script setup lang="ts">
const handleLoad = (data: unknown) => {
// Handle load event
}
</script>1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
File Location
src/components/embeds/LinkEmbedCard.vue
This documentation was automatically generated from the component source code.
