pull/1/head
Aurian JAULT 2 years ago
commit fe997a1b6d

@ -1,6 +1,7 @@
class Team{ class Team{
constructor(id, name){ constructor(id, name, description){
this.id=id; this.id=id;
this.name=name; this.name=name;
this.description=description;
} }
} }

@ -7,6 +7,7 @@ export default{
Results: '', Results: '',
id:'', id:'',
name:'', name:'',
description:'',
clicked: false clicked: false
} }
}, },
@ -32,7 +33,7 @@ export default{
<span>Results</span> <span>Results</span>
</div> </div>
<form @submit.prevent v-if="clicked"> <form @submit.prevent v-if="clicked">
<br>
<div> <div>
<label>id</label><br/> <label>id</label><br/>
<input type="number" v-model="id"/> <input type="number" v-model="id"/>

Loading…
Cancel
Save