Here’s how I got it working:
-
npm install --save wow.js
(note the.
and--save
flag) - In
Common.js
:
import Wow from 'wow.js';
export default {
init() {
// JavaScript to be fired on all pages
const wow = new Wow();
wow.init();
},
finalize() {
// JavaScript to be fired on all pages, after page specific JS is fired
},
};