27 lines
409 B
Vue
27 lines
409 B
Vue
<template>
|
|
<div>
|
|
<HeaderTools></HeaderTools>
|
|
<TiptapEditor :accordionData="accordionItems"></TiptapEditor>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
listConflicts: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
});
|
|
const accordionItems = [
|
|
{
|
|
id: 1,
|
|
title: "عنوان",
|
|
content: "متن",
|
|
isOpen: true,
|
|
children: [],
|
|
},
|
|
];
|
|
</script>
|
|
|
|
<style></style>
|