How to create a request with F7 [v2] using VUE

Hello, I am trying to use VUE with F7 for the first time and I want to generate a request. The docs say to use:
myApp.request({…})

How might I do this using VUE?

var myApp = new vue({
    el: '#app',
    template: '<app/>',
    data: {
      test:{
         name: 'test name'
    }
},
methods: {
  logMeIn: function(){
    console.log('clicked login');
  }
},
framework7: {
  root: '#app',
  material: true,
  routes: routes
},
    components: {
      app: login
   }
})

myApp is not the same, so how might I get the F7 instance to generate a request?

This worked for me:

           Dom7.ajax({
                url: url,
                type: request.type,
                contentType: 'application/json',
                cache: false,
                //data:{'json_order':jsonOrder},
                beforeSend:function(){
               
                },
                success:function(data){
                    console.log(data);
                    if(data =='success'){
            
                        alert('success');
                    }
                    else{
                        alert('no data');
                    }
            
                }
            });