@oneschema/vue v0.7.1
A 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.
Getting Started
Installation
You can install this package with npm:
npm i --save @oneschema/vueConfigure the SDK
Create an instance of the OneSchemaPlugin by calling createOneSchemaImporter and passing it to Vue's app.use()
import { createOneSchemaImporter } from '@oneschema/vue'
const app = createApp(App)
app.use(
createOneSchemaImporter({
clientId: '<CLIENT_ID>',
...initParams
})
)
app.mount('#app')Sample usage
Once the OneSchema plugin has been registered, you can call the useOneSchemaImporter function to obtain the OneSchemaImporterClass instance.
<script setup lang="ts">
import { useOneSchemaImporter } from "@oneschema/vue"
const importer = useOneSchemaImporter();
const launchOneSchema = function () {
importer.launch();
importer.on('success', (data) => {
// TODO: handle success
console.log(data);
});
importer.on('cancel', () => {
// TODO: handle cancel
});
importer.on('error', (message) => {
// TODO: handle errors
console.log(message);
});
};
</script>
<template>
<button @click="launchOneSchema">Launch embed</button>
</template>
<style>
.oneschema-iframe {
width: 100vw;
height: 100vh;
border: none;
position: absolute;
right: 0;
top: 0;
z-index: 10000; /* adjust as needed */
}
</style> Documentation
Please see 📚 OneSchema's documentation for 📒 API reference and other helpful guides.
8 months ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago