mirror of
https://github.com/TeamPiped/Piped.git
synced 2025-01-10 11:30:28 +05:30
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>
|