1.0.4 • Published 5 years ago

vue-fullpage-component v1.0.4

Weekly downloads
8
License
ISC
Repository
github
Last release
5 years ago

vue-fullpage-component

npm i vue-fullpage-component
// nuxt.config.js
module.exports = {
  transpile: [
    'vue-fullpage-component',
  ]
}
<template>
<fullpage :accuracy="20" :startAt="0" duration="200">
  <section>page 1</section>
  <div>page 2</div>
  ...
</fullpage>
</template>

<script>
import fullpage from 'vue-fullpage-component'

export default {
  components: {
    fullpage,
  }
}
</script>