-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
comhon-project edited this page Jan 4, 2026
·
6 revisions
- install
query-kitwith npm :
> npm i @query-kit/vue
- then import and use
query-kitplugin (in yourapp.jsormain.jsor equivalent) :
import { createApp } from 'vue'
import { plugin } from "@query-kit/vue";
import App from 'App.vue'
const config = {/* here goes your config */};
createApp(App).use(plugin, config).mount('#app')By default query-kit comes without any style, but if you don't want to define your own styles, you can use a predefined style. To do so, you must :
- install theme package
> npm i @query-kit/themes
- then import theme (in your
app.jsormain.jsor equivalent) :
import "@query-kit/themes/default";