mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
30 lines
455 B
Vue
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>
|