How can I add thid parts javascript libraries to a Quasar .vue page?
-
Hello, I´m new on Quasar and i´m trying to add some javascript libraries like pizzicato ( https://alemangui.github.io/pizzicato/. ) into a .vue page. Where in the proyect i must place and how can i access it?.
Thanks in advance! -
Well I found the answer, install it using npm and import.
cd myproject
npm install pizzicatoand then in the .vue file
<script>
import Pizzicato from ‘pizzicato’;Thanks anyway.
-
@gaguerrero - there is also another method of integrating “vue-esque” plugins:
-
Thanks I’ll read it!