mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
19 lines
490 B
Vue
19 lines
490 B
Vue
<template>
|
|
<p v-text="message" />
|
|
<button v-t="'actions.show_more'" class="btn" @click="toggleTrace" />
|
|
<p ref="stacktrace" class="whitespace-pre-wrap" hidden v-text="error" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
error: { type: String, default: null },
|
|
message: { type: String, default: null },
|
|
},
|
|
methods: {
|
|
toggleTrace() {
|
|
this.$refs.stacktrace.hidden = !this.$refs.stacktrace.hidden;
|
|
},
|
|
},
|
|
};
|
|
</script>
|