Skip to content

Commit

Permalink
fix(iife): avoid global reference, close #143
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Mar 15, 2022
1 parent 773cb00 commit 32fc575
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/index.iife.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
}
return VueDemi
})(
this.VueDemi = this.VueDemi || VueDemi || {},
this.Vue || Vue,
this.VueCompositionAPI || VueCompositionAPI
this.VueDemi = this.VueDemi || {},
this.Vue,
this.VueCompositionAPI
);

0 comments on commit 32fc575

Please sign in to comment.