Skip to content

Instantly share code, notes, and snippets.

@brandongallardoa
Created October 24, 2018 03:12
Show Gist options
  • Save brandongallardoa/322318b9ff30d80a4d11b4ba53a034a9 to your computer and use it in GitHub Desktop.
Save brandongallardoa/322318b9ff30d80a4d11b4ba53a034a9 to your computer and use it in GitHub Desktop.
@section('scripts')
<script>
var app = new Vue({
el: '#app',
data: {
photo: null,
description: null,
},
methods: {
openModal: function(e) {
this.photo = e.target.getAttribute('photo')
this.description = e.target.getAttribute('description')
$('#post_modal').modal()
}
}
});
</script>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment