Skip to content

Instantly share code, notes, and snippets.

@windate3411
Created March 2, 2020 09:12
Show Gist options
  • Save windate3411/013e13e50369e48714f7427f4f5d608d to your computer and use it in GitHub Desktop.
Save windate3411/013e13e50369e48714f7427f4f5d608d to your computer and use it in GitHub Desktop.
<template>
<div class="scroll-image">
<img :src="source" alt="a placeholder scroll image" />
</div>
</template>
<script>
export default {
props: ['source']
}
</script>
<style>
.scroll-image {
margin: 0 auto 400px;
max-width: 600px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment