[Vuejs]-Passing props to instances mounted on existing markup and created with Vue.extend

2👍

Pass it the propsData in the options:

const instance = new Countdown({
    propsData: { hours: 2 }
});

Leave a comment