2021-06-06 18:47:43 +00:00
|
|
|
<template>
|
|
|
|
<p>{{ message }}</p>
|
|
|
|
<button uk-toggle="target: #stacktrace" class="uk-button uk-button-small" style="background: #222" type="button">
|
2021-09-05 13:08:26 +00:00
|
|
|
{{ $t("actions.show_more") }}
|
2021-06-06 18:47:43 +00:00
|
|
|
</button>
|
2021-06-07 17:25:16 +00:00
|
|
|
<p id="stacktrace" style="white-space: pre-wrap" hidden>{{ error }}</p>
|
2021-06-06 18:47:43 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
2021-10-08 18:52:51 +00:00
|
|
|
error: { type: String, default: null },
|
|
|
|
message: { type: String, default: null },
|
2021-06-06 18:47:43 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|