Breaking change in 1.3.1
Change to src/lib/core.js
in 1.3.1 uses require() rather than import, which is not compatible with Vite.
When 1.3.1 is built with Vite, using the field causes: Uncaught (in promise) ReferenceError: require is not defined. This unhandled exception stops the page from loading.
import { VIcon, VTextField, VSpacer, VListItem, VListItemGroup, VList, VSheet, VMenu } from 'vuetify/lib';
import { parsePhoneNumber, AsYouType } from 'libphonenumber-js/max';
var getCountries = require('libphonenumber-js').getCountries;
var Metadata = require('libphonenumber-js').Metadata;
I haven't submitted a PR as I'm not familiar with the library being used and why the change was made - but in my application was an unexpected breaking change.