mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-30 18:43:17 +00:00
22 lines
548 B
Vue
22 lines
548 B
Vue
<template>
|
|
<p>{{ message }}</p>
|
|
<button @click="toggleTrace" class="uk-button uk-button-small" type="button">
|
|
{{ $t("actions.show_more") }}
|
|
</button>
|
|
<p ref="stacktrace" style="white-space: pre-wrap" hidden>{{ error }}</p>
|
|
</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>
|