Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CloWM UI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computational Metagenomics
CloWM
CloWM UI
Merge requests
!157
Resolve "Add dashboard"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add dashboard"
feature/159-add-dashboard
into
main
Overview
0
Commits
1
Pipelines
0
Changes
13
Merged
Daniel Göbel
requested to merge
feature/159-add-dashboard
into
main
5 months ago
Overview
0
Commits
1
Pipelines
0
Changes
13
Expand
Closes
#159 (closed)
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
4c351d18
1 commit,
5 months ago
13 files
+
672
−
101
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
src/components/BootstrapCard.vue
0 → 100644
+
24
−
0
Options
<
script
setup
lang=
"ts"
>
import
{
useSlots
}
from
"
vue
"
;
const
slots
=
useSlots
();
</
script
>
<
template
>
<div
class=
"card"
>
<div
class=
"card-body"
>
<h5
class=
"card-title"
>
<slot
name=
"title"
/>
</h5>
<h6
v-if=
"slots.subtitle"
class=
"card-subtitle mb-2 text-body-secondary"
>
<slot
name=
"subtitle"
/>
</h6>
<div
class=
"card-text"
>
<slot
name=
"body"
/>
</div>
<slot
name=
"footer"
/>
</div>
</div>
</
template
>
<
style
scoped
></
style
>
Loading