मुझे भविष्य के संदर्भों के लिए एक vue.js फ़ाइल के अंदर एक टिप्पणी डालने की आवश्यकता है, लेकिन मुझे नहीं लगता कि आप डॉक्स में यह कैसे करते हैं।
मैं कोशिश की है //
, /**/
, {{-- --}}
, और {# #}
, लेकिन उनमें से कोई काम करने लगते हैं।
मैं लारवेल के ब्लेड का उपयोग कर रहा हूं। तो यह है 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>
<div class="media-body">
<strong>{{ post.user.name }}</strong>
<p>{{post.body}}</p>
<p>{{post.likeCount}} {{ pluralize('like', post.likeCount) }}</p>
</div>
</div>
</template>
क्या किसी को पता है कि एक टिप्पणी कैसे डालें और / या कोड के टुकड़े कैसे टिप्पणी करें?
<!-- -->
:। लेकिन ऐसा लगता है कि आप इनलाइन टिप्पणी के लिए देख रहे हैं?