Added manual page to REST Mock (#267)
Reviewed-on: #267 Reviewed-by: Mikolaj Widla <widlam@noreply.example.com> Co-authored-by: Adam Bem <adam.bem@zoho.eu> Co-committed-by: Adam Bem <adam.bem@zoho.eu>
This commit is contained in:
18
Frontend/src/components/man/ElementDescription.vue
Normal file
18
Frontend/src/components/man/ElementDescription.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<script setup lang="ts">
|
||||
|
||||
import { ref } from 'vue'
|
||||
|
||||
|
||||
|
||||
const props = defineProps(
|
||||
{
|
||||
name: {type: String, required: true}
|
||||
}
|
||||
)
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<h3 class="text-lg font-medium mt-2">{{ name }}</h3>
|
||||
<p><slot></slot></p>
|
||||
</template>
|
||||
Reference in New Issue
Block a user