Skip to content

Installation

comhon-project edited this page Jul 31, 2023 · 6 revisions

Install query-kit with npm :

> npm i @query-kit/vue

Warning! if you use vite, in your dev environnement, you have to specify the following vite configuration (vite.config.js) :

optimizeDeps: {
  exclude: ['@query-kit/vue'],
},

If you want to use a predined style, you must :

  • install theme package
> npm i @query-kit/themes
  • then import theme file (should be placed in main.js file) :
import "@query-kit/themes/default";

Clone this wiki locally