You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
453 B
27 lines
453 B
4 years ago
|
<template>
|
||
|
<p :style="{'color':color,'text-align':textAlign}">
|
||
|
{{ value }}
|
||
|
</p>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'DescText',
|
||
|
props: {
|
||
|
value: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
color: {
|
||
|
type: String,
|
||
|
default: '#000000'
|
||
|
},
|
||
|
textAlign: {
|
||
|
type: String,
|
||
|
default: 'left'
|
||
|
}
|
||
|
},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|