Qik Vue UI Kit
UI Kit Documentation | SDK Documentation | REST API Documentation | Website
Usage
For use in Vue 3 projects where you want to use the Qik UI features and elements. This should be used in conjunction with the Qik Javascript SDK.
Installation
npm install @qikdev/vue-ui --save
Getting Started
import Qik from '@qikdev/sdk';
import { QikUI, Selection, Device } from '@qikdev/vue-ui';
import { createApp } from 'vue'
import App from './App.vue'
const app = createApp(App)
const sdk = new Qik({
apiURL: 'production',
});
app.use(QikUI, sdk);
app.mount('#app')