omar
February 2, 2021, 2:03pm
1
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
omar
February 2, 2021, 10:07pm
3
Thanks for your quick response!