ругается на props, vue 2.5
[Vue warn]: Property or method "props" is not defined on the instance but referenced during render.
Код как в доке:
<v-data-table
no-data-text="Нет платежей"
hide-actions
:headers="headers"
:items="payments"
>
<template v-slot:items="props">
<td>{{ props.item.updated_at }}</td>
<td class="text-xs-right">{{ props.item.name }}</td>
<td class="text-xs-right">{{ props.item.expire_at }}</td>
<td class="text-xs-right">{{ props.item.price }}</td>
<td class="text-xs-right">{{ props.item.discount }}</td>
<td class="text-xs-right">{{ props.item.amount }}</td>
</template>
</v-data-table>
что не так с этим v-slot:items="props"?
понял, vue 2.5
Обсуждают сегодня