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.
26 lines
453 B
26 lines
453 B
<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>
|
|
|