Интересует такой вопрос, вот пробую сделать такой компонент запись + модалка
<template>
<div class="main">
<div class="main__news">
<news-bar />
<div class="news-wrap__right">
<div class="news-block" @click="showModal = true">
<div class="news-block__img" :style="`background-image: url(${news.img});`"></div>
<div class="news__block__right">
<span class="news-block__date">
<slot name="date"></slot>
</span>
<p class="news-block__text">
<slot name="title"></slot>
</p>
<span class="news-block__label">Мини-КАСКО</span>
</div>
<div class="main-news-popup" v-if="showModal">
<div class="news-popup">
<div class="overlay"></div>
<div class="news-popup__content">
<div class="news-popup__content__close" @click="showModal = false"></div>
<div class="news-popup__content__top">
<div class="news-popup__content__top__left" style="background-image:url(../../../../static/img/car.jpg)"></div>
<div class="news-popup__content__top__right">
<div class="news-popup__content__title">
<slot name="title"></slot>
</div>
<div class="news-popup__content__top__bottom">
<span class="news-popup__content__top__bottom__date">
<slot name="date"></slot>
</span>
<span class="news-block__label">Рейтинги</span>
</div>
</div>
</div>
<div class="news-popup__content__bottom">
<p class="news-popup__content__bottom__p">
<slot name="text"></slot>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="news-wrap__bottom">
<div class="news-wrap__bottom__arrows">
<div class="news-wrap__bottom__arrow news-wrap__bottom__arrow_left"></div>
<div class="news-wrap__bottom__arrow news-wrap__bottom__arrow_right"></div><span class="news-wrap__bottom__arrows__count">Показано 20 из 73</span>
</div>
<el-pagination
layout="prev, pager, next"
:total="1000">
</el-pagination>
</div>
</div>
</template>
<template>
<div class="main">
<popup v-for="(news, index) in news" :key="index">
<div slot="title"> {{ news.title }} </div>
<div slot="date"> {{ news.date }} </div>
<div slot="text"> {{ news.text }} </div>
</popup>
</div>
</template>
и вот приходят в компонент какие-то данные, я передаю их через слот.
но я не могу и в записи, и в модалке выводить slot name="одинаковое имя" как быть в такой ситуации?