2022-09-15 12:05:00 +08:00

30 lines
455 B
Vue

<template>
<pre data-testid="pre" :style="style">{{ finalText }}</pre>
</template>
<script>
export default {
name: 'my-pre',
props: {
// deepscan-disable-next-line
style: {
type: Object,
},
object: {
type: Object,
},
text: {
type: String,
default: '',
},
},
computed: {
finalText() {
return this.object ? JSON.stringify(this.object, null, 2) : this.text;
},
},
};
</script>