Vue plugin for embedding OneSchema Importer
npm install @oneschema/vueA tool for embedding OneSchema into your application with Vue. This library contains a Vue plugin which will allow you to add an iframe to your application which can open OneSchema and import data into your application.
You can install this package with npm:
``bash`
npm i --save @oneschema/vue
by calling createOneSchemaImporter and passing it to Vue's app.use()`javascript
import { createOneSchemaImporter } from '@oneschema/vue'const app = createApp(App)
app.use(
createOneSchemaImporter({
clientId: '',
...initParams
})
)
app.mount('#app')
`$3
Once the OneSchema plugin has been registered, you can call the useOneSchemaImporter function to obtain the OneSchemaImporterClass instance.`vue
``Please see 📚 OneSchema's documentation for 📒 API reference and other helpful guides.