mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-13 03:38:23 +00:00
17 lines
377 B
Vue
17 lines
377 B
Vue
|
<template>
|
||
|
<p>{{ message }}</p>
|
||
|
<button uk-toggle="target: #stacktrace" class="uk-button uk-button-small" style="background: #222" type="button">
|
||
|
Show More
|
||
|
</button>
|
||
|
<p id="stacktrace" style="white-space: pre" hidden>{{ error }}</p>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
error: String,
|
||
|
message: String,
|
||
|
},
|
||
|
};
|
||
|
</script>
|