Skip to content

Instantly share code, notes, and snippets.

@cvetkovskin
Created September 11, 2019 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cvetkovskin/5639d2f6cad277f82a07e25593c648a1 to your computer and use it in GitHub Desktop.
Save cvetkovskin/5639d2f6cad277f82a07e25593c648a1 to your computer and use it in GitHub Desktop.
<template>
<div class="container">
<div class="content-wrapper">
<h1 class="title">All contents</h1>
<div class="pagination-wrapper">
<pagination :current-page="currentPage" :total-items="totalItems" :rows-per-page="rowsPerPage" />
</div>
<amp-list
src="https://www.omdbapi.com/?apikey=7f517297&type=movie&s=man&page=1"
[src]="'https://www.omdbapi.com/?apikey=7f517297&type=movie&s=man&page=' + currentPage"
items="Search"
width="auto"
height="570"
layout="fixed-height"
class="movie-list"
v-html="listTemplate"
/>
</div>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment