[Vuejs]-VueJS with Jquery

0👍

You can include signFile.js in index.html. After this your functions will be available on the window object.

To use a method exposed by signFile.js you can write something like this

window.SignMethod(args)

inside a callback from a vuejs handler.

Leave a comment