ProteinExample.vue 314 B
<template>
<protein-detail-page protein-id="A0A1I9LRM4" />
</template>
<script>
import ProteinDetailPage from '@/components/ProteinDetailPage.vue'
export default {
name: 'ProteinExample',
components: {
ProteinDetailPage
},
mounted: function () {
// console.log(this.$route.name)
}
}
</script>