/vue-uhf

A Vue.js component for dynamically loading the Microsoft UHF

Primary LanguageVueBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

vue-uhf

A Vue.js component for dynamically loading the Microsoft UHF

Usage

Install the component

npm i -s vue-uhf

Import the component

<template>
    <div class="page">
        <UHF partnerID="YourPartnerID" headerID="YourHeaderID" footerID="YourFooterID" :cookieCompliance="true" />
    </div>
</template>

<script>
import UHF from 'vue-uhf';

export default {
    components: {
        UHF
    }
};
</script>

Changelog

1.0.4

1.0.3

  • update license

1.0.1

  • fix duplicate headers and footers when switching between routes

1.0.0

  • Initial commit