New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@ghentcdh/ui

Package Overview
Dependencies
Maintainers
3
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ghentcdh/ui

--- Ui ---

latest
Source
npmnpm
Version
0.6.9
Version published
Maintainers
3
Created
Source

Ui

GhentCDH UI

A modular Vue.js component library styled with TailwindCSS, designed for GhentCDH projects. By overriding specific variables, the library can be customized for white-label use.

Features

  • Vue.js components: Prebuilt UI elements for rapid development.
  • TailwindCSS-based: Highly customizable design.
  • White-label support: Modify variables to adapt the UI to different brands.
  • Reusable and scalable: Built for consistency across projects.

Installation

pnpm add @ghentcdh/ui
npm install @ghentcdh/ui
yarn add @ghentcdh/ui

Usage

Register the styling

@use '@ghentcdh/ui/style.css' as *;

// Adjust the tailwind variables if necessary

// The projects tailwind should scan for
@source "./src";


Registering Components

Import the components in your Vue project:

<script setup>
import { Btn, Card } from "@ghentcdh/ui";
</script>

<template>
  <Card>
    <h2 class="text-lg font-bold">Welcome</h2>
    <p>This is a reusable UI component from GhentCDH UI.</p>
    <Btn>Click me</Btn>
  </Card>
</template>

Development & Contribution

To contribute, clone the repository and install dependencies:

git clone https://github.com/GhentCDH/ui.git
cd ui
npm install

Run the development server:

npm run dev

License

This project is licensed under the MIT License. See the LICENSE file for details.

credits

Bo Vandersteene, Ghent University.

FAQs

Package last updated on 17 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts