1.3.2 • Published 3 years ago

@klicksite/klickpages-header v1.3.2

Weekly downloads
95
License
ISC
Repository
github
Last release
3 years ago

klickpages-header

A Vue component for klick applications to get the klickpages header.

Install

npm install @klicksite/klickpages-header

In this library we use npm to install depencies and build the package. Don't use yarn.

Example

Klickpages-header component depends on your application having a configured vuex store.

//main.js

import Vue from 'vue';
import App from './App.vue';
import KlickpagesHeader from 'klickpages-header';
import store from './store';

Vue.use(KlickpagesHeader, { store });

new Vue({
  store,
  render: (h) => h(App),
}).$mount('#app');
<!-- App.vue -->

<template>
  <div>
    <klickpages-header :klickartUrl=""/>
    <router-view />
  </div>
</template>

<script>

export default {};
</script>

Documentation

propdescriptionrequireddefault
klickartURLklickart url according to the environmentyesnull
jwtSecretsecret shared with klickartyesnull
hotmartURLhotmart-pro url according to the environmentyesurl*
  • url hotmart for development/staging/test & production must be provided by hotmart.

Guide for developers

Acess the developer-guide: Developer-guide

1.3.2

3 years ago

1.3.1

3 years ago

1.3.0

3 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.3

4 years ago

1.1.1

4 years ago

1.1.2

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago