我需要在vue.js文件中插入注释以供将来参考,但我在文档中找不到您如何执行此操作。
我已经试过//
,/**/
,{{-- --}}
,和{# #}
,但他们都不工作。
我正在使用Laravel的刀片。所以这是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>
有谁知道如何插入注释和/或如何注释代码段?
正如Bill Criswell所说,我们可以使用HTML注释语法。
但是,它也可以在模板标记之外运行, comment.vue