Third-Party Libraries
Learn how to secure Vue applications while working with third-party libraries.
We'll cover the following...
Can we use third-party libraries?
Nowadays, it’s very common to install a new dependency whenever specific functionality is needed. Do we need a fancy multiselect? Let’s check npm for packages. How about tooltip components?
Let’s head to npm. Third-party libraries are very useful because, instead of starting from scratch, we can just pick a library, plug it in, and have working functionality. There’s no need to write stuff from scratch or ...