You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
577 B

<template>
<base-modal
text="Create"
:is-create="true"
>
<template v-slot="slotProps">
<label-creation-form
:create-label="createLabel"
@close="slotProps.close"
/>
</template>
</base-modal>
</template>
<script>
import { mapActions } from 'vuex'
import BaseModal from '@/components/molecules/BaseModal'
import LabelCreationForm from '@/components/organisms/LabelCreationForm'
export default {
components: {
BaseModal,
LabelCreationForm
},
methods: {
...mapActions('labels', ['createLabel'])
}
}
</script>