0👍
Since you already defined slots in your component you can pass data to it via slots. E.g.
<your-modal-component>
<template slot="modal__header">
header bla bla a
</template>
<template slot="modal__body">
body anything here like <p> hehe</p>
</template>
</your-modal-component>
- [Vuejs]-Passing JSON response from Axios to a data object but getting errors
- [Vuejs]-How can i match with current user Id with firebase database data's value?
Source:stackexchange.com