View Vue Component

View - is a separate visual part of app with its own settings, navigation and history. Each view also may have different navbar and toolbar layouts, different styles. So it is some kind of app in app. Such kind of functionality allows you easily manipulate each part of your app.

View Vue component represents Framework7's View component.

View Components

There are following components included:

  • f7-view - single View-router component
  • f7-views - wrapper element for multiple views used as Tabs

View Properties

Prop Type Default Description
<f7-view> properties
init boolean true Initializes View automatically
tab boolean Uses View as Tab
tab-active boolean Defines View-Tab as currently active Tab
View Vue component also accepts all View Parameters. All of them can be passed via separate props on <f7-view> component
<f7-views> properties
tabs boolean Uses Views as Tabs wrapper container

View Events

Swipe-back related events are available only in iOS theme.

Event Description
swipeback:move Event will be triggered during swipe back move
swipeback:beforechange Event will be triggered right before swipe back animation to previous page when you release it
swipeback:afterchange Event will be triggered after swipe back animation to previous page when you release it
swipeback:beforereset Event will be triggered right before swipe back animation to current page when you release it
swipeback:afterreset Event will be triggered after swipe back animation to current page when you release it
tab:show Event will be triggered when View-Tab becomes visible/active
tab:hide Event will be triggered when View-Tab becomes invisible/inactive

Access To View Instance

If you use automatic initalization to init the View (with init:true prop) and need to use View API (like router) you can access its initialized instance:

  • by accessing .f7View component's property
  • if you have passed name property (e.g. "left") you can access it like this.$f7.views.left
  • main view (with main="true" prop) is always accessible via this.$f7.views.main

Examples

Minimal layout

<f7-view main>
  ...
</f7-view>

<!-- Renders to: -->

<div class="view view-main">
  ...
</div>

Views As Tabs

<f7-views tabs>
  <f7-view id="tab-1" main tab tab-active>...</f7-view>
  <f7-view id="tab-2" tab>...</f7-view>
</f7-views>

<!-- Renders to: -->
<div class="views tabs">
  <div class="view view-main tab tab-active" id="tab-1">...</div>
  <div class="view tab" id="tab-2">...</div>
</div>

With parameters

<f7-view :dynamic-navbar="true" :url="/home/" :animate="false" :iosDynamicNavbar="false">
  ...
</f7-view>