the plugin I want to use let's define variables in plugin declaration within app.js
Vue.use(AirbnbStyleDatepicker, {monthNames: [
'January',
'February',
'March',
'April',
'May',
'June',
'Julyyy',
'Augusttt',
'September',
'October',
'November',
'December',
],});
however my website has few locales which is managed in server, I usually encode vars from laravel and pass them as props. In this case this does not work. I didn't find how to initialize plugin with options in component, so what is the way to solve this?