Migrating my first app from V1 to V3

I did develop my fist ( and only ) app with F7 + Vue

I did use sue to populate some view / page insert at the bottom of HTML inside tags

and routed and populated with js

$$.getJSON(urljson, function (jsondata) {
		
		mainView.router.loadContent($('#archive').html());
		
		var varchivilistaheader = new Vue({
			el: '#sez-archive-header',
			data: {
				headerlabel: window.referrerp
			}
		});
			  
		var varchivilista = new Vue({
			el: '#sez-archive',
			data: {
				items: jsondata
			}
		});
	  
	});	

now from what I see in documentation it should be possible to do it only with F7
I’m wrong?

Where can I find a complete example?

https://framework7.io/docs/router-component.html