1
0

Initial commit

This commit is contained in:
2022-03-30 00:01:25 +01:00
commit e09e453071
34 changed files with 323 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
export default {
props: ['funko'],
template: `
<div class="card text-center">
<img class='card-img-top' :src="'https://laurenacton.github.io/img/' + funko.img + '.jpg'" :alt="funko.name" width="150" />
<div class="card-header">
<p>{{funko.name}}</p>
</div>
<div class="card-body">
<div class="card-text">
<p>{{funko.desc}}</p>
</div>
<a :href="{{funko.href}}" class="btn btn-primary stretched-link">Read more</a>
</div>
</div>
`
}