-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add props definition to T3CeTextMedia Content Element
- Loading branch information
Mateusz Narowski
committed
Nov 8, 2024
1 parent
304d304
commit 74c84e1
Showing
2 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
<template> | ||
<t3-ce-textpic | ||
v-bind="$props" | ||
<T3CeTextpic | ||
v-bind="props" | ||
class="t3-ce-textmedia" | ||
/> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import type { T3CeGalleryProps } from '../../../types' | ||
const props = defineProps<T3CeGalleryProps>() | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters