27 lines
435 B
Vue
27 lines
435 B
Vue
<template>
|
|
<SmartModal
|
|
v-if="show"
|
|
:title="$t('team.select_a_team')"
|
|
@close="$emit('hide-modal')"
|
|
>
|
|
<template #body>
|
|
<Teams :modal="true" />
|
|
</template>
|
|
</SmartModal>
|
|
</template>
|
|
|
|
<script>
|
|
import { defineComponent } from "@nuxtjs/composition-api"
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
show: Boolean,
|
|
},
|
|
methods: {
|
|
hideModal() {
|
|
this.$emit("hide-modal")
|
|
},
|
|
},
|
|
})
|
|
</script>
|