9 lines
145 B
Vue
9 lines
145 B
Vue
<template>
|
|
<span class="ui-property-output">{{ value }}</span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: [ 'value' ]
|
|
}
|
|
</script> |