Skip to content

Instantly share code, notes, and snippets.

@Rabbitzzc
Created December 17, 2020 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rabbitzzc/0b1e9d3c9925b93e496f7f76012c6188 to your computer and use it in GitHub Desktop.
Save Rabbitzzc/0b1e9d3c9925b93e496f7f76012c6188 to your computer and use it in GitHub Desktop.
预览 JS 对象组件
<template>
<div>
<pre>{{ valueString }}</pre>
</div>
</template>
<script>
const props = {
name: 'raw-displayer',
value: {
required: true,
},
}
export default {
props,
computed: {
valueString() {
return JSON.stringify(this.value, null, 2)
},
},
}
</script>
<style scoped>
pre {
text-align: start;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment