I have added the jquery redactor plugin in a vue component. The plugin is working fine but I need to access the html so I can see it in Vue.
I have tried everything
Just to add to @BertEvans superb answer. Here is a solution that adds props and v-model back into the mix. This allows you to get the redactor content as a value and have access to that data in the root.
Component
JS
Vue.component('vueredactor', require('./components/redactor.vue'));
var App = new Vue({
el: '#app',
data: {
redactorContent: null
}
});
HTML