mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
16 lines
233 B
Vue
16 lines
233 B
Vue
<template>
|
|
<div>
|
|
<p v-text="label" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'DisplayTextItem',
|
|
|
|
props: {
|
|
id: { type: String, default: null },
|
|
label: { type: String, default: null },
|
|
},
|
|
}
|
|
</script>
|