Framework7 + revealjs

Good afternoon!
I have a large collection of slides made with revealjs (https://revealjs.com/).
I want to create an application from these slides. Is it possible to integrate revealjs as a plugin in Framewiork7 (preferably Framework7 + Vue).
Did according to the instructions http://framework7.io/docs/plugins-api.html.
But, unfortunately, does not work. Tell me, please, how to do it. Thank you in advance.

Not clear what exactly you want to reuse from revealjs and what have you tried?

Good afternoon, thanks for the reply. Here’s what I got.

// File framework.reveal.js.

window.revealPlugin = {
name: ‘reveal’,
params: {
},
create: function () {
var app = this;
app.reveal = {

}

},
on: {
init: function () {
var app = this;
},
pageBeforeIn: function (page) {
},
pageAfterIn: function (page) {
},
pageBeforeOut: function (page) {
},
pageAfterOut: function (page) {
},
pageInit: function (page) {
},
pageBeforeRemove: function (page) {
},
}
}

// File index.html

.... < a href="/slides/" class="item-content item-link"> < div class="item-inner"> < div class="item-title">Slides .... ....

// File pages/slides.html

< div class=“page” data-name=“reveal”>

< /div>
< div class=“page-content”>
< div class=“block-title”>My Slides
< div class=“reveal”>
< div class=“slides”>
< section>Slide 1
< section>Slide 2
< /div>
< /div>
< /div>
< /div>

// File routes.js

routes = [

{
path: ‘/slides/’,
url: ‘./pages/slides.html’,
},

]

// File app.js

// Dom7
var $$ = Dom7;

Framework7.use(revealPlugin);

// Framework7 App main instance
var app = new Framework7({…

Рage ‘slides’ opens, but slides don’t work.

I do not understand where to insert the structure:
Reveal.initialize({});