37 lines
488 B
Vue
37 lines
488 B
Vue
<template>
|
|
|
|
<div id='CONTAINER' class='card'>
|
|
|
|
<div class='card container'>
|
|
|
|
<section
|
|
data-anim-incoming='1'
|
|
:data-anim-bounce='gstore.nav_anim.out?1:0'>
|
|
<h1 >{{ $route.params.code }}</h1>
|
|
|
|
|
|
<div class='footer'>
|
|
<button class='neutral' @click='gstore.nav_out($router)'>Retour</button>
|
|
</div>
|
|
</section>
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'CONTAINER_VIEW',
|
|
data(){
|
|
return { gstore: gstore.get }
|
|
}
|
|
}
|
|
|
|
</script> |