Add a new page requested via ajax with Framework7

I’m developing a new project with Symfony(4).
My problem is that I dont want to use Framework7 routing but only the Symfony one. So I need to know how to add a new page after I requested a content. Here’s my code:

app.request.get('/users/5/profile', function (data) {
    console.log(data); // need to add this new page on main-view with desired page transition
});