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 : <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