-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<template> | ||
<ul class="divide-y divide-slate-100"> | ||
<slot></slot> | ||
</ul> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<template> | ||
<article class="flex items-start space-x-6 p-6"> | ||
<img :src="movie.image" alt="" width="60" height="88" class="flex-none rounded-md bg-slate-100" /> | ||
<div class="min-w-0 relative flex-auto"> | ||
<h2 class="font-semibold text-slate-900 truncate pr-20">{{ movie.title }}</h2> | ||
<dl class="mt-2 flex flex-wrap text-sm leading-6 font-medium"> | ||
<div class="absolute top-0 right-0 flex items-center space-x-1"> | ||
<dt class="text-sky-500"> | ||
<span class="sr-only">Star rating</span> | ||
<svg width="16" height="20" fill="currentColor"> | ||
<path d="M7.05 3.691c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.372 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.539 1.118l-2.8-2.034a1 1 0 00-1.176 0l-2.8 2.034c-.783.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.363-1.118L.98 9.483c-.784-.57-.381-1.81.587-1.81H5.03a1 1 0 00.95-.69L7.05 3.69z" /> | ||
</svg> | ||
</dt> | ||
<dd>{{ movie.starRating }}</dd> | ||
</div> | ||
<div> | ||
<dt class="sr-only">Rating</dt> | ||
<dd class="px-1.5 ring-1 ring-slate-200 rounded">{{ movie.rating }}</dd> | ||
</div> | ||
<div class="ml-2"> | ||
<dt class="sr-only">Year</dt> | ||
<dd>{{ movie.year }}</dd> | ||
</div> | ||
<div> | ||
<dt class="sr-only">Genre</dt> | ||
<dd class="flex items-center"> | ||
<svg width="2" height="2" fill="currentColor" class="mx-2 text-slate-300" aria-hidden="true"> | ||
<circle cx="1" cy="1" r="1" /> | ||
</svg> | ||
{{ movie.genre }} | ||
</dd> | ||
</div> | ||
<div> | ||
<dt class="sr-only">Runtime</dt> | ||
<dd class="flex items-center"> | ||
<svg width="2" height="2" fill="currentColor" class="mx-2 text-slate-300" aria-hidden="true"> | ||
<circle cx="1" cy="1" r="1" /> | ||
</svg> | ||
{{ movie.runtime }} | ||
</dd> | ||
</div> | ||
<div class="flex-none w-full mt-2 font-normal"> | ||
<dt class="sr-only">Cast</dt> | ||
<dd class="text-slate-400">{{ movie.cast }}</dd> | ||
</div> | ||
</dl> | ||
</div> | ||
</article> | ||
</template> | ||
|
||
<script setup> | ||
defineProps(['movie']) | ||
</script> | ||
|