0👍
I assume that currentModalPdfLink
is your pdf-link?
The name of the prop that you are passing is src
so you need to refer to it in your component with the same name:
Vue.component('modal', {
template: '#modal-template-pdf',
props: ['src']
});
👤Bene
- [Vuejs]-My Vue object is not reactive. It works locally but not on hosted server
- [Vuejs]-Hide timer and display text box
Source:stackexchange.com