函數(shù)式組件是無狀態(tài)的墨状,無法實(shí)例化,沒有任何的生命周期和方法菲饼。一般適合只依賴外部數(shù)據(jù)的變化而變化的組件肾砂,因其輕量,渲染性能也會(huì)有所提高宏悦。
镐确,,饼煞,
子組件
<template name="comment_list">
<div class="comment">
<div class="comment_top_left">
<img v-if="commentItem.anonymous=='1'" src="@/assets/image/zu53.png" />
<img v-else :src="commentItem.img_url" alt />
<div>
<p class="title_name" v-if="commentItem.anonymous=='1'">匿名用戶</p>
<p v-else>{{commentItem.name}}</p>
</div>
</div>
</div>
</div>
</template>
源葫,,砖瞧,
息堂,,块促,
父組件
import comment from "@/components/comment";
components: {
comment,
},
<comment :commentItem="item" />