S4WEB/riot/app.riot

18 lines
336 B
Plaintext
Raw Normal View History

<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>