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