I have navigation component reused in multiple blade pages with some modification. so I used:
<script>
window.app = new Vue({
el: '#navigation',
....
});
</script>
in my navigation component.
when I included it in profile component that have:
<script>
window.app = new Vue({
el: '#app',
....
});
</script>
one of them doesn't work. I know that these two definitions have anastomosis but I don't know how resolve it.
In simple what the matter with this:
<script>
window.app = new Vue({
el: '#app1',
....
});
</script>
<script>
window.app = new Vue({
el: '#app2',
....
});
</script>
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…