2020-12-11 10:29:03 +00:00
|
|
|
<template>
|
2021-03-01 03:58:14 +00:00
|
|
|
<SmartModal v-if="show" @close="hideModal">
|
2021-06-30 08:46:02 +00:00
|
|
|
<template #header>
|
|
|
|
|
<h3 class="heading">{{ $t("support_us") }}</h3>
|
|
|
|
|
<div>
|
|
|
|
|
<button class="icon button" @click="hideModal">
|
|
|
|
|
<i class="material-icons">close</i>
|
|
|
|
|
</button>
|
2020-12-11 10:29:03 +00:00
|
|
|
</div>
|
2021-06-30 08:46:02 +00:00
|
|
|
</template>
|
|
|
|
|
<template #body>
|
2021-03-01 03:58:14 +00:00
|
|
|
<AppContributors />
|
2021-06-30 08:46:02 +00:00
|
|
|
</template>
|
2021-03-01 03:58:14 +00:00
|
|
|
</SmartModal>
|
2020-12-11 10:29:03 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
props: {
|
|
|
|
|
show: Boolean,
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
hideModal() {
|
|
|
|
|
this.$emit("hide-modal")
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|