[Vuejs]-Resolve npm module dependencies

0👍

My bad, the error was simply not adding lang=”scss” in the style declaration of the component:

  <style scoped>

this should be:

  <style scoped lang="scss">

Leave a comment