Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/devmnj/vue-color-picker

Vue pure CSS color picker component
https://github.com/devmnj/vue-color-picker

color color-picker css vue vue-component vue-components vuejs

Last synced: about 1 month ago
JSON representation

Vue pure CSS color picker component

Awesome Lists containing this project

README

        

vue-color-picker

[![Status](https://img.shields.io/badge/status-active-success.svg)]()
[![GitHub Issues](https://img.shields.io/github/issues/kylelobo/The-Documentation-Compendium.svg)](https://github.com/kylelobo/The-Documentation-Compendium/issues)
[![GitHub Pull Requests](https://img.shields.io/github/issues-pr/kylelobo/The-Documentation-Compendium.svg)](https://github.com/kylelobo/The-Documentation-Compendium/pulls)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE)

---

color-picker component for Vue



## 📝 Table of Contents

- [About](#about)
- [Getting Started](#getting_started)
- [Usage](#usage)
- [Built Using](#built_using)

## 🧐 About

This is a pure CSS color-picker component for Vue/Nuxt project.

## Prerequisites

- Nodejs
- Vuejs

## 🏁 Getting Started

Install and add the dependecy the component

```bash
npm i --save @codehat/vue-color-picker
```

## 🎈 Usage

```html




{{ col }}






```

```javascript

import VueColorPicker from "@codehat/vue-color-picker" ;
export default {
name: "Gallery",
data() {
return {
col: "",
};
},
methods: {
changeColor(value) {
this.col = value;
},
},
components: {
"c-picker": VueColorPicker,
},
};

```

## ⛏️ Built Using

- [VueJs](https://vuejs.org/) - Web Framework
- [NodeJs](https://nodejs.org/en/) - Server Environment