Options for the GraffitiPlugin.

interface GraffitiPluginOptions {
    graffiti: Graffiti;
}

Properties

Properties

graffiti: Graffiti

An instance of the Graffiti API for the Vue.js plugin to use. This instance, wrapped with GraffitiSynchronize, will be exposed in Vue templates as $graffiti and in setup functions as useGraffiti. You must interact with Graffiti through these wrapped instances to enable reactivity.

You'll likely want to use the federated implementation. However, you could also use the local implementation for testing. Other implementations may be available in the future.