I have this html:
<div id='parent'>
{{title}}
<div id='children'>
{{titleChildren}}
</div>
</div>
and these two Vue instances:
var parent = new Vue({
el: "#parent",
data: {
title: 'Test Parent'
}
});
var parent = new Vue({
el: "#children",
data: {
titleChildren: 'Test Children'
}
});
The problem is the data of children is not bind on the html. I can have one instance inside other, like angular?
fiddle example: https://jsfiddle.net/dsxvce0w/