App Vue Component

    1. <template>
    2. <f7-app :params="f7params" :routes="routes">
    3. </f7-app>
    4. </template>
    5. <script>
    6. import routes from './routes';
    7. export default {
    8. data() {
    9. return {
    10. id: 'com.myapp.test',
    11. // ... other params
    12. },
    13. // routes
    14. routes,
    15. }
    16. }