As you know in angular ui-router
we use ui-view
to render an html
to parent html
. According to this:
<!-- index.html -->
<body>
<div ui-view="filters"></div>
<div ui-view="tabledata"></div>
<div ui-view="graph"></div>
</body>
js
file:
$stateProvider
.state('report', {
views: {
'filters': { ... templates and/or controllers ... },
'tabledata': {},
'graph': {},
}
})
Also in Ionic
framework we can use this:
<ion-nav-view name="filters"></ion-nav-view>
What is the diference?