[Vuejs]-Include JS file in .vue file

3👍

You can’t include script directly in .vue file. Rather, you have to import the file:

import Pusher from 'path-to-pusher'

Leave a comment