S4WEB/riot/suiviformation.riot

26 lines
793 B
Plaintext

<suiviformation>
<div class="content is-large" style="text-align: center;">
<h4 if={props.formation && !props.type}><a onclick={props.resetToFili}>{props.formation}</a></h4>
<h4 if={props.formation && props.type && !props.detail}><a onclick={props.resetToFili}>{props.formation}</a> / <a onclick={props.resetToType}>{props.type}</a></h4>
<h4 if={props.formation && props.type && props.detail}><a onclick={props.resetToFili}>{props.formation}</a> / <a onclick={props.resetToType}>{props.type}</a> / <a onclick={props.resetToDetail}>{props.detail}</a></h4>
</div>
<script>
export default function todos(){
return {
onBeforeMount(props, state) {
// initial state
this.state = {
formation: '',
type: '',
detail: ''
}
}
}
}
</script>
</suiviformation>