Added complete_description attribute to Collection for homepage #12 + Vue.js components to handle display and sart to harmonize javascript
<template src='./template.html'></template>
<script>
export default {
props: ["close-with-escape"],
data () {
return {
display: false
}
},
methods: {
close: function () {
this.display = false;
},
show: function () {
this.display = true;
}
}
}
</script>