This page is part of the App Framework Documentation
App Framework supports well the usage of Cordova / PhoneGap plugins. You just have to add them in the configuration file. Example with cordova-plugin-badge:
useCordovaPlugins: [
"cordova-plugin-badge"
]
You can use the plugin now in any of your components. Example:
<script>
export default {
created: function () {
// Set badge to 10
window.cordova.plugins.notification.badge.set(10)
}
}
</script>
Take care to use window.
to access any plugin.
You find a list of available plugins here: https://cordova.apache.org/plugins
By default, cordova-plugin-whitelist and cordova-plugin-statusbar are included in the build.
To simplify the usage, App Framework provides you an easier way to manipulate the status bar - please read the chapter Status bar style for details.
Cordova plugins are only available in native applications or emulators, in the browser, they are undefined.