Ionic-Vue '@angular/core' Error

Greetings, I have an ionic-vue project and installed the Device Orientation Plugin from Ionic-Native and follow the install instructions, but I get the current error.

Is their a particular way to install this components, or em I not supposed to use them in Vue?

Thanks in advanced.

import { ScreenOrientation } from "@ionic-native/screen-orientation";
    ScreenOrientation.lock(ScreenOrientation.ORIENTATIONS.LANDSCAPE);

    ScreenOrientation.onChange().subscribe(() => {
      console.log("Orientation Changed");
    });

Check out my other tutorials on using vue with plugins - https://buff.ly/300Zrus

1 Like

Thanks for your quick response!