How to use capacitor storage with Vue?

import { Plugins } from '@capacitor/core'
const { SplashScreen } = Plugins 

Then i can use SplashScreen methods, like hide() etc. But storage won’t work this way:

mounted() {
    const { Storage } = Plugins
    Storage.clear()
}

Throws an error storage.clear is not a function