How do I Import vue modules following the recent F7 Vue updates?

Yes, these updates seems to be making our apps load faster than ever but I still have problems with vue imports… I am unable to import modules such as vue-moment module by using Vue.use(require('vue-moment'));:pensive:
I can’t figure out how to import and make it work, how do I do that please?

in the app.js:

// Import Vue
import { createApp } from ‘vue’;

// Import Framework7
import Framework7 from ‘framework7/lite-bundle’;

// Import Framework7-Vue Plugin
import Framework7Vue, { registerComponents } from ‘framework7-vue/bundle’;

// Import Framework7 Styles
import ‘framework7/framework7-bundle.css’;

// Import Icons and App Custom Styles
import ‘…/css/icons.css’;
import ‘…/css/app.css’;

// Import App Component
import App from ‘…/components/app.vue’;

Vue.use(require(‘vue-moment’)); /* THIS DOESN’T WORK ANYMORE, LOOKS LIKE IMPRORT SYNTAX IN THIS 2021 Framework7 Vue HAVE CHANGED AND I DON’T KNOW HO TO MAKE IT WORK*/