1.0.6 • Published 9 months ago

vue-cls v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

Vue-cls

A simple utility to merge class names, handle dynamic class bindings, and conditionally apply classes in Vue components based on component state or props.

Installation

npm install vue-cls

Usage

<script setup lang="ts">
import { cls } from 'vue-cls';

const isActive = true
</script>

<template>
 <a href="/" :class="cls('text-white', { 'bg-green-900': isActive }) ">Home</a>
</template>

Author

@AhmedHassan

Credits

@iamandrewluca

1.0.6

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago