11 lines
169 B
JavaScript
11 lines
169 B
JavaScript
export default {
|
|
props: {
|
|
response: {},
|
|
},
|
|
computed: {
|
|
responseBodyText() {
|
|
return new TextDecoder("utf-8").decode(this.response.body)
|
|
},
|
|
},
|
|
}
|