@ckpack/v-ui
TypeScript icon, indicating that this package has built-in type declarations

1.12.2 • Public • Published

@ckpakc/v-ui

中文 | ENGLISH

@ckpack/v-ui is a Vue3.x Component UI library.

Features

  • Developed based on modern tools such as Vite, Vue3.x, TypeScript
  • Separation of UI, state logic and CSS for components
  • Switch theme styles with Hooks, CSS-IN-JS and CSS variables
  • You can customize component prefixes, CSS variable prefixes, and CSS class prefixes to avoid component name or style conflicts
  • All components support on-demand loading by default
  • Provides extensive documentation and component examples

Documentation

Getting Started

Full Import

Completely import the component library.

import { createApp } from 'vue';
import VUI from '@ckpack/v-ui';
import App from '@/App.vue';

const app = createApp(App);

app.use(VUI, {
  // ...Optional configuration parameters
});
app.mount('#app');

Demand Import

<script setup>
import { VButton } from '@ckpack/v-ui';
</script>

<template>
  <VButton>
    Test
  </VButton>
</template>

Readme

Keywords

Package Sidebar

Install

npm i @ckpack/v-ui

Weekly Downloads

2

Version

1.12.2

License

ISC

Unpacked Size

338 kB

Total Files

165

Last publish

Collaborators

  • ckpack