I am trying to use VeeValidate and the examples show the usage of ES6 import like this:
import { Validator } from 'vee-validate';
My understanding is that this works only with npm and not with CDN. I want to just write client-side js and not use node js. Do I have to look into something like browserify or webpack?
I tried to copy the javascript from the CDN link and just make it a local js file for importing, but could not get it working. Did it not work because I did not have export statements?