Quick Start
This section will tell you how to install the component library in your own project and use it.
INFO
Recommend using node > 16.0.0 version
Install
using package manager (npm/yarn)
shell
TODOFull Import
If you don’t care about the bundle size so much, it’s more convenient to use full import.
js
import iqComponents from 'iq-components'
import { createApp } from 'vue'
import App from './App.vue'
const app = createApp(App)
app.use(iqComponents)
app.mount('#app')On-demand Import
ToDo
