pinafore/routes/_components/timeline/MoreHeader.html
Nolan Lawson 8d5690d63d
remove get() with string from Svelte calls (#169)
* remove get() with string pt 1

* remove get() with string pt 2

* fix typo

* fix some null exceptions in get()

* fixup code style
2018-04-19 09:37:05 -07:00

25 lines
464 B
HTML

<div class="more-items-header">
<button class="primary" type="button" on:click="onClick(event)">
Show {{count}} more
</button>
</div>
<style>
.more-items-header {
display: flex;
padding: 5px;
align-items: center;
justify-content:center;
}
</style>
<script>
export default {
methods: {
onClick(event) {
let { onClick } = this.get()
if (onClick) {
onClick(event)
}
}
}
}
</script>