Skip to content

Instantly share code, notes, and snippets.

@anishdcruz
Last active August 11, 2017 11:35
Show Gist options
  • Save anishdcruz/ace1185f76302f9261bb8f9f93a6a593 to your computer and use it in GitHub Desktop.
Save anishdcruz/ace1185f76302f9261bb8f9f93a6a593 to your computer and use it in GitHub Desktop.
<template>
{{sharedState.gallery}}
</template>
<script>
import Gallery from '../../js/helpers/gallery.js'
export default {
data() {
return {
sharedState: Gallery.state // is important
}
},
mounted() {
// ajax
Gallery.setGallery([1,2,3,4])
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment