"tests/FilterByInTest.php" did not exist on "08c92a55821048075293618cf30e13b68e35da69"
Newer
Older
Дмитрий Малюгин
committed
<script setup lang="ts">
import type { IEntity } from '@/interfaces/environment';
import TextItem from '@/components/entities/TextItem.vue';
interface Props {
entity: IEntity;
}
defineProps<Props>();
</script>
<template>
<div>
<TextItem v-if="entity.type === 'text'" :entityData="entity"/>
</div>
</template>
<style scoped></style>