1.0.3 • Published 3 years ago

@nuilibrary/nui v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

NUI

Download & Use

Download

npm install @nuilibrary/nui --save 

Use

In the main file of the project

import NUI from '@nuilibrary/nui';
import '@nuilibrary/nui/lib/nui.css';

/* Type 1 */
createApp(App).use(NUI).mount('#app');

/* Type 2 */
const nui = new NUI({ /* Your Options */});
createApp(App).use(nui).mount('#app');