Skip to content

Lithos-hub/iUI

Repository files navigation

iUI

iUI

iUI is a components portfolio made with Vue 3, TypeScript, Tailwind CSS, SASS, Vitest and Vite.

Project setup

npm install

Compiles and hot-reloads for development

npm run dev

Compiles and minifies for production

npm run build
npm run start

Run your unit tests

npm run test:unit

Components list - Roadmap

Component (UI) Status
Alert ReadyBtn
Avatar ReadyBtn
Badge ReadyBtn
Button ReadyBtn
Calendar WipBtn
Card WipBtn
Carousel WipBtn
Chip WipBtn
Collapse WipBtn
Dialog WipBtn
Divider ReadyBtn
Icon ReadyBtn
List WipBtn
Spinner ReadyBtn
Modal WipBtn
Progress ReadyBtn
Skeleton ReadyBtn
Table WipBtn
Tag ReadyBtn
Tooltip WipBtn

Recommended IDE Setup

Type Support For .vue Imports in TS

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.

If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.