Data
| Name | Type | Default value | Description |
|---|---|---|---|
id | String | - | - |
newTeamName | String|null | null | - |
seasons | Array | - | - |
seasonId | String|null | null | - |
Computed
| Name | Type | Description |
|---|---|---|
newTeamNameIsValid | Boolean | - |
newTeamNameStateFeedback | String|null | - |
seasonSelectOptions | Array | - |
seasonIsValid | Boolean | - |
seasonStateFeedback | String|null | - |
Events
| Name | Payload Type | Description |
|---|---|---|
teamCreated | string | - |
Example
<template>
<CreateTeamModal ref="createTeamModal" @teamCreated="handler" />
<Button @click="() => $refs.createTeamModal.open()" />
</template>