Loading...
Loading...
The Quiltt Vue SDK provides components and composables for seamless integration of the Quiltt Connector into your Vue 3 app.
For full documentation, additional examples and the source code, see the Quiltt Vue SDK on GitHub.
Register the plugin in your app entry point:
To load the Connector for use by a pre-existing end-user, you'll need to pass a valid Session token. See the Authentication guide for more information on generating Session tokens.
Use the useQuilttSession composable to import a token at runtime:
QuilttButtonOpens the Connector in a modal overlay.
QuilttContainerRenders the Connector inline.
QuilttConnectorFull-page iframe for embedded integration.
For better tree-shaking, components can also be imported from the subpath:
| Prop | Type | Description |
|---|---|---|
connector-id | string | Required. Quiltt Connector ID |
connection-id | string | Existing connection ID for reconnection |
institution | string | Pre-select an institution |
app-launcher-url | string | Deep link URL for OAuth callbacks |
| Event | Payload | Description |
|---|---|---|
@load | metadata | Connector loaded |
@exit-success | metadata | Connection successful |
@exit-abort | metadata | User cancelled |
@exit-error | metadata | Error occurred |
useQuilttSessionuseQuilttConnectoruseQuilttInstitutions — Search available institutions for a connector.useQuilttResolvable — Check if a provider connection can be resolved.useQuilttSettings — Access plugin-provided settings such as clientId.useSession — Low-level reactive session state manager.useStorage — Reactive wrapper around Quiltt global storage.For better tree-shaking, composables can also be imported from the subpath:
Pass connection-id to repair or reconnect an existing Connection. See the Reconnect Flow guide for more information.
Use the useQuilttResolvable composable to check if external provider institution IDs (e.g., Plaid) are supported by your connector.
Contact Quiltt Support to enable access to this feature.
For mobile apps, use @quiltt/capacitor/vue which adds native OAuth handling. See the Capacitor SDK guide for full documentation.