vue-ideate-alpha
v1.0.4
Published
Vue 3 composables and components to help integrate Alis Ideate into your products.
Readme
Vue Ideate
This package provides utility composables and Vue 3 components to help users of Alis Ideate better link and integrate their products.
Installation
pnpm add vue-ideateUsage
import { useIdeateFeedback } from 'vue-ideate';
// The token as part of the URL provided when generating a public collection link in ideate
// Format: `{payload}.{signature}`
const token = 'YOUR_TOKEN';
const { generateUrl } = useIdeateFeedback(token);
const url = generateUrl();