0.0.11 • Published 5 months ago
nuxt-usesuperflow v0.0.11
nuxt-usesuperflow
A powerful Nuxt 3 module that seamlessly integrates useSuperflow into your Nuxt applications, enabling enhanced workflow management and automation.
Installation
Install the module using your preferred package manager:
# pnpm
pnpm add -D nuxt-usesuperflow
# npm
npm install --save-dev nuxt-usesuperflow
# yarn
yarn add --dev nuxt-usesuperflow
# bun
bun add -D nuxt-usesuperflow
Setup
- Add
nuxt-usesuperflow
to your Nuxt configuration:
// nuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-usesuperflow'
],
})
- Configure the module with your credentials:
// nuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-usesuperflow'
],
usesuperflow: {
projectId: 'YOUR_PROJECT_ID', // Required
apiKey: 'YOUR_API_KEY', // Required
// Additional configuration options...
},
})
Usage
Once installed and configured, you can use useSuperflow in your components:
<script setup>
const { flow } = useSuperflow()
// Start using useSuperflow features
</script>
Configuration Options
Option | Type | Default | Description |
---|---|---|---|
projectId | string | undefined | Your useSuperflow project ID |
apiKey | string | undefined | Your useSuperflow API key |
For more detailed configuration options, please refer to our documentation.
Documentation
For detailed documentation, visit:
Contributing
We welcome contributions! Please see our Contributing Guide for details.
License
MIT License © 2024
Credits
- Nuxt - The Intuitive Vue Framework
- useSuperflow - Workflow Automation Platform