Skip to content

Instantly share code, notes, and snippets.

@johnleider
Created February 26, 2020 14:55
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 johnleider/debe0af2329a5b003ae28f20a9c33a6a to your computer and use it in GitHub Desktop.
Save johnleider/debe0af2329a5b003ae28f20a9c33a6a to your computer and use it in GitHub Desktop.
<template>
<v-app-bar
:color="color"
@scroll="onScroll"
>
</v-app-bar>
</template>
<script>
export default {
data: () => ({
color: 'blue',
}),
methods: {
onScroll (scroll) {
this.color = scroll > 10 ? 'red' : 'blue'
},
},
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment