23 lines
742 B
Plaintext
23 lines
742 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 = {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
</script>
|
|
</suiviformation>
|