A Vue.js component for dynamically loading the Microsoft UHF
npm i -s vue-uhf
<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>
- update jQuery due to vulnerability (see: https://nvd.nist.gov/vuln/detail/CVE-2019-11358)
- update license
- fix duplicate headers and footers when switching between routes
- Initial commit