1
我無法找到一種方法來選擇用於在v-for中渲染文本的不同選項。是否有可能或者我需要以不同的方式構建邏輯來完成類似下面的代碼?v-if和v-else在v-for內部用於不同的文本渲染
<template>
<ul v-show="showNotifications">
<li v-for="notification in notifications">
// if notification.type = 'friend request'
New friend request from {{ notification.name }}
// else
New notification from {{ notification.name }}
</li>
</ul>
</template>
通知是一個包含名稱和通知類型數據的對象數組。