UNPKG

vue-msal

Version:

Vue plugin for using Microsoft Authentication Library (MSAL)

11 lines (10 loc) 255 B
export const mixin = { data: function() { return { msal: (this.$msal) ? this.$msal.data : {} } }, created: function() { this.$watch('$msal.data', (value) => { this.msal = value; }, { deep: true }); } };