0👍
This https://github.com/biggora/device-uuid/issues/15 is what you are searching for, probably.
Basically you should change the import from:
import DeviceUUID from "device-uuid";
To:
import { DeviceUUID } from 'device-uuid';
And a () should by added in DeviceUUID constructor call:
new DeviceUUID().parse()
- [Vuejs]-Use popup gallery with index
- [Vuejs]-How can I get the value from this multiple array object with VueJs
Source:stackexchange.com