Skip to content

EColorPicker

The EColorPicker component replaces the standard html input type color and encapsulates well-defined logic that can be reused throughout the app.

Basic Usage

template
<script setup>
import { ref } from "vue";
import { EColorPicker } from "easy-kit-component";

const date = ref();
</script>

<template>
  <EColorPicker v-model="color"/>
</template>
    
Color is :

API Reference

  • Props
ts
interface ColorPicker {
  disabled?: boolean;
}

Released under the MIT License.