Created
October 24, 2018 03:12
-
-
Save brandongallardoa/322318b9ff30d80a4d11b4ba53a034a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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