Posts

Showing posts with the label blade

How to comment code in a vue.js file?

Image
Clash Royale CLAN TAG #URR8PPP How to comment code in a vue.js file? I have the need to insert a comment inside a vue.js file for future references, but I don't find how you do this in the docs. I have tried // , /**/ , {{-- --}} , and {# #} , but none of them seem to work. // /**/ {{-- --}} {# #} I am using Laravel's blade. So this is the sample_file.vue : sample_file.vue <template> <div class="media"> <like-button :post="post" v-if="post.likedByCurrentUser === false && "></like-button> {{--I want to comment this but I get an error from the gulp watch: post.canBeLikedByCurrentUser === true--}} <div class="media-left"> <a href="#"> <img class="media-object" v-bind:src="post.user.avatar" v-bind:title="post.user.name + ' image from Gravatar'"> </a> </div> ...