[Vuejs]-Error Importing External Class in Vue Component

0👍

You will have to export the class you want to use.

export class className {}

and

import {className} from '<file path>';

Leave a comment