App Vue Component

    There are following components included:

    Passing routes in separate prop:

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

    Accordion →