Skip to content
Snippets Groups Projects
Commit 439f0243 authored by David Mendez's avatar David Mendez
Browse files

Eubopen: start to add new assays browser

parent fb844a7d
No related branches found
No related tags found
1 merge request!88Changes for the Midterm Review
<template>
<EBAssaysBrowser
:raw-state="rawState"
:initial-state-saving-params="initialStateSavingParams"
/>
</template>
<script>
import EBAssaysBrowser from '~/web-components-submodule/components/common/Browsers/specific_browsers/assay/eubopen/EBAssaysBrowser.vue'
import EntityNames from '~/web-components-submodule/standardisation/EntityNames.js'
import { entityBrowserMixin } from '~/web-components-submodule/mixins/browsers/entityBrowserMixin.js'
export default {
components: {
EBAssaysBrowser,
},
mixins: [entityBrowserMixin],
layout: 'entityBrowser',
head() {
const titleText = `Explore all ${EntityNames.EubopenAssay.pluralEntityName}.`
const descriptionText =
'The EUbOPEN consortium is an Innovative Medicines Initiative (IMI) funded project to enable and unlock biology in the open.'
const canonicalURL =
`https://${process.env.canonicalDomain}` + this.$route.path
const imgURL = `https://${
process.env.canonicalDomain
}${require('~/static/img/logo.png')}`
return {
title: titleText,
meta: [
{
hid: 'description',
name: 'description',
content: descriptionText,
},
{ hid: 'og:title', name: 'og:title', content: titleText },
{
hid: 'og:description',
name: 'og:description',
content: descriptionText,
},
{ hid: 'og:type', name: 'og:type', content: 'object' },
{ hid: 'og:url', name: 'og:url', content: canonicalURL },
{ hid: 'og:image', name: 'og:image', content: imgURL },
],
link: [
{
rel: 'canonical',
href: canonicalURL,
},
],
}
},
}
</script>
<style></style>
Subproject commit 12218ead502492a35d0c13b03640910076390a25
Subproject commit 317a8d646ddd85540e67bde72df3016bd738db68
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment