App Vue Component
There are following components included:
Passing routes in separate prop:
<template>
<f7-app :params="f7params" :routes="routes">
<!-- ... -->
</f7-app>
<script>
import routes from './routes';
export default {
data() {
return {
f7params: {
id: 'com.myapp.test',
// ... other params
},
// routes
routes,
}
}