[Vuejs]-How to use exported functions on VueJS app?

0👍

You can export your function in UserService.js

try to add this code in UserService.js

export default {
  updateDisplayName,
  updatePassword
}

Leave a comment