2018-03-12 18:50:33 +00:00
|
|
|
<template>
|
|
|
|
|
|
|
|
<div id='CONTAINER' class='card'>
|
|
|
|
|
|
|
|
<div class='card container'>
|
|
|
|
|
2018-03-13 14:43:43 +00:00
|
|
|
<section data-anim-incoming='1'>
|
2018-03-12 18:50:33 +00:00
|
|
|
<h1 >{{ $route.params.code }}</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<div class='footer'>
|
|
|
|
<button class='neutral' @click='$router.push(`/ue/view`)'>Retour</button>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'CONTAINER_VIEW',
|
|
|
|
data(){
|
|
|
|
return { gstore: gstore.get }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|