Vue-fullpage.js
Official Vue.js wrapper for the fullpage.js library.
Terminal:
Check out the license for commercial projects.
Basic usage
This wrapper creates a <full-page>
component , which you can use like other Vue.js components. For example:
If you prefer to use Vue.component
followed by new Vue
, then you would have to include vue.min.js
, build.min.js
and optionally mixin.min.js
if you will make use of fullpage.js methods.
For example:
Then initialise it this way:
Options
You can use any options supported by fullPage.js library.
Just pass options object into this wrapper like Vue.js property. You can see this in the example above.
Options object can contain simple options as well as fullPage.js callbacks.
Methods
fullPage.js contains many methods.
You can use any of them. Just include fullPage mixin in your component and the `fullPageMixin.vue file. This mixin contains all methods which fullPage library provides.
Example:
Similar you can call any method of fullPage.js library.
Callbacks
As mentioned above you can pass callbacks through options object:
Or you can use the standard approach for event handling of Vue.js:
Similar you can handle any event of fullPage.js library.
Just translate camelCase name of callback to kebab-case and use it ;)
Dynamic changes
vue-fullpage.js will watch all changes taking place within the fullpage.js options but will NOT automatically watch any DOM changes. If you want vue-fullpage.js to react to DOM changes call $.fn.fullpage.update();
after making those changes. For example:
In order for fullPage.js to get updated after a change in any of the fullPage.js options, you'll have to make sure to use such option in the initialisation.
For example, if we want fullPage.js to get updated whenever I change the scrollBar
and controlArrows
options, I'll have to use the following initialisation:
Or, if using new Vue
, use an object instead of a function for the data
property: