0.0.11 • Published 5 months ago

nuxt-usesuperflow v0.0.11

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

nuxt-usesuperflow

npm version License Downloads

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

  1. Add nuxt-usesuperflow to your Nuxt configuration:
// nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    'nuxt-usesuperflow'
  ],
})
  1. 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

OptionTypeDefaultDescription
projectIdstringundefinedYour useSuperflow project ID
apiKeystringundefinedYour 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

0.0.10

5 months ago

0.0.11

5 months ago

0.0.8

1 year ago