[Vuejs]-Importing DeviceUUID in Vue Js

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()

Leave a comment