Answers for "Cannot find module at webpack Context Resolve vue"

0

Cannot find module at webpack Context Resolve vue

computed: {
  userWithIcon () {
    return {
      ...this.user, 
      icon: this.user.icon && require(`../assets/imgs/${this.user.icon}`)
    }
  }
}
Posted by: Guest on January-13-2022
0

Cannot find module at webpack Context Resolve vue

<img width="100px" height="100px" :src="userWithIcon.icon">
Posted by: Guest on January-13-2022

Code answers related to "Cannot find module at webpack Context Resolve vue"

Browse Popular Code Answers by Language