18 lines
336 B
Plaintext
18 lines
336 B
Plaintext
<app>
|
|
<choixformation isSelected={isSelected}></choixformation>
|
|
<script>
|
|
export default function todos() {
|
|
return {
|
|
onBeforeMount(props, state) {
|
|
// initial state
|
|
this.state = {
|
|
};
|
|
},
|
|
isSelected(formation){
|
|
console.log(formation +"is selected")
|
|
}
|
|
}
|
|
}
|
|
|
|
</script>
|
|
</app> |