api-client/components/app/Support.vue

32 lines
635 B
Vue
Raw Normal View History

2020-12-11 10:29:03 +00:00
<template>
<SmartModal v-if="show" @close="hideModal">
2020-12-11 10:29:03 +00:00
<div slot="header">
<div class="row-wrapper">
<h3 class="heading">{{ $t("support_us") }}</h3>
2020-12-11 10:29:03 +00:00
<div>
<button class="icon button" @click="hideModal">
2020-12-11 10:29:03 +00:00
<i class="material-icons">close</i>
</button>
</div>
</div>
</div>
2020-12-11 16:54:34 +00:00
<div slot="body" class="flex flex-col">
<AppContributors />
2020-12-11 10:29:03 +00:00
</div>
<div slot="footer"></div>
</SmartModal>
2020-12-11 10:29:03 +00:00
</template>
<script>
export default {
props: {
show: Boolean,
},
methods: {
hideModal() {
this.$emit("hide-modal")
},
},
}
</script>