Skip to content

Commit

Permalink
Change export default to export const x
Browse files Browse the repository at this point in the history
  • Loading branch information
jofftiquez committed May 17, 2018
1 parent e4a1d90 commit 8f097d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filters/uppercase/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default (Vue) => {
export const uppercase = (Vue) => {
Vue.filter('morph-uppercase', (value) => {
if(!value) return;
return value.toUpperCase();
Expand Down

0 comments on commit 8f097d3

Please sign in to comment.