Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Wiki
Manage
Activity
Members
Labels
Plan
Issues
53
Issue boards
Milestones
Wiki
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MDM Lab
Wiki
Merge requests
!3
Expansion panel article
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Expansion panel article
expansion-panel-article
into
dev
Overview
1
Commits
5
Pipelines
1
Changes
9
Merged
Remi PLANEL
requested to merge
expansion-panel-article
into
dev
1 year ago
Overview
1
Commits
5
Pipelines
1
Changes
9
Expand
expandable card to display abstract
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
1f4fe332
5 commits,
1 year ago
9 files
+
194
−
41
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
components/content/ArticleDoi.vue
0 → 100644
+
43
−
0
Options
<
script
setup
lang=
"ts"
>
const
props
=
defineProps
<
{
doi
:
string
;
}
>
();
const
{
article
}
=
useFetchArticle
(
props
.
doi
)
const
show
=
ref
(
false
)
console
.
log
(
article
)
</
script
>
<
template
>
<v-list-item
:href=
"article?.href"
:target=
"article?.target"
>
<template
#prepend
>
<v-avatar>
<v-icon>
{{
article
?.
prependIcon
}}
</v-icon>
</v-avatar>
</
template
>
<v-card
flat
color=
"transparent"
density=
"compact"
>
<v-card-item
density=
"compact"
>
<v-card-title><span
class=
"text-subtitle-1 font-weight-bold"
>
{{ article?.title ?? 'no title' }}
</span></v-card-title>
<v-card-subtitle>
{{ article?.subtitle ?? "no subtitle" }}
</v-card-subtitle>
<v-card-subtitle>
{{ article?.containerTitle ?? "no containerTitle" }} ({{ article?.year
}})
</v-card-subtitle>
</v-card-item>
<v-card-actions
v-if=
"article?.abstract"
density=
"compact"
>
<v-btn
size=
"x-small"
variant=
"outlined"
:append-icon=
"show ? 'mdi-chevron-up' : 'mdi-chevron-down'"
@
click.stop.prevent=
"show = !show"
>
Abstract
</v-btn>
</v-card-actions>
<v-expand-transition>
<v-card
v-show=
"show"
flat
color=
"transparent"
>
<v-card-text>
{{ article?.abstract }}
</v-card-text>
</v-card>
</v-expand-transition>
</v-card>
</v-list-item>
<v-divider
inset
></v-divider>
</template>
\ No newline at end of file