22 lines
353 B
Vue
22 lines
353 B
Vue
<template lang="html">
|
|
<computed
|
|
v-if="value"
|
|
class="property-description"
|
|
embedded
|
|
:value="value"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import ComputedForCreature from '/imports/ui/components/computation/ComputedForCreature.vue';
|
|
|
|
export default {
|
|
components: {
|
|
Computed: ComputedForCreature,
|
|
},
|
|
props: {
|
|
value: String,
|
|
},
|
|
}
|
|
</script>
|