version update to nuxt4
This commit is contained in:
parent
7f1770d442
commit
ef84942e38
41 changed files with 5134 additions and 4946 deletions
|
@ -1,21 +0,0 @@
|
|||
<template>
|
||||
<span
|
||||
v-for="text in data"
|
||||
:key="text.text"
|
||||
:class="[
|
||||
text.bold ? 'font-bold' : '',
|
||||
text.strikethrough ? 'line-through' : '',
|
||||
text.underline ? 'underline' : '',
|
||||
text.italic ? 'italic' : '',
|
||||
]"
|
||||
>{{ text.text }}</span
|
||||
>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import type { TextField } from "../../types/field/content";
|
||||
|
||||
defineProps({
|
||||
data: Array<TextField>,
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue