[Vuejs]-Using external VueJs components in a VueJS project

0👍

Please see the documentation on complication scope, notably:

Everything in the parent template is compiled in parent scope; everything in the child template is compiled in child scope.

Your template includes input and mask properties but your data function does not set those up. They need to be set up and reactive so if they change, Vue can pass them down to the child component (which it looks like your bs-input component exposes an input and mask properties).

Leave a comment