2018-03-12 18:50:33 +00:00
|
|
|
<template>
|
|
|
|
|
|
|
|
<div id='CONTAINER' class='card'>
|
|
|
|
|
2018-03-14 16:43:44 +00:00
|
|
|
<div class='list container'>
|
2018-03-12 18:50:33 +00:00
|
|
|
|
2018-03-14 11:12:32 +00:00
|
|
|
<section
|
|
|
|
data-anim-incoming='1'
|
|
|
|
:data-anim-bounce='gstore.nav_anim.out?1:0'>
|
2018-03-12 18:50:33 +00:00
|
|
|
<h1 >{{ $route.params.code }}</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<div class='footer'>
|
2018-03-14 11:12:32 +00:00
|
|
|
<button class='neutral' @click='gstore.nav_out($router)'>Retour</button>
|
2018-03-12 18:50:33 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'CONTAINER_VIEW',
|
|
|
|
data(){
|
|
|
|
return { gstore: gstore.get }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|