api-client/components/app/Support.vue

29 lines
534 B
Vue
Raw Normal View History

2020-12-11 10:29:03 +00:00
<template>
<SmartModal v-if="show" @close="hideModal">
<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>
</template>
<template #body>
<AppContributors />
</template>
</SmartModal>
2020-12-11 10:29:03 +00:00
</template>
<script>
export default {
props: {
show: Boolean,
},
methods: {
hideModal() {
this.$emit("hide-modal")
},
},
}
</script>