F7 + Capacitor: How to use Capacitor Plugin?

Here is a beginner question: How do I use the Capacitor Plugins?
I created a fresh app (F7 cli, Capacitor). If I want to use the Haptics plugin for example:

How (for example) can I trigger a vibration in Javascript?

This page has example on how to use the plugin in JS Capacitor - build cross platform apps with the web

Thanks!
In which file do I put the

import { Haptics, ImpactStyle } from ‘@capacitor/haptics’;

const hapticsVibrate = async () => {
await Haptics.vibrate();
};

?

In the file where you need to access it

1 Like