Struggling with connecting Vue data attributes to placeholders in a Vueify template. Looking for help to understand how to resolve this issue.
Browserify is being used to execute the Vueify transformation on .vue files.
This is the current configuration:
new Vue({
el: '#clip-slides',
render : function(createElement){
var template = require('./clips.vue');
return createElement(template);
},
data : {
'testValue' : 'I am a test value!'
}
});
<template>
<div>
{{testValue}}
</div>
</template>
The placeholder testValue
within the template remains empty.
In need of guidance on properly passing "data" options to the template.