0.0.6 • Published 1 year ago

vue-sketch v0.0.6

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

vue-sketch

Modified based on https://github.com/xiaokaike/vue-color to support vue3, and separate the Sketch to package.

Installation

NPM

$ npm install vue-sketch -s

Use case

<template>
  <Sketch v-model="color" @update:model-value="log"/>
</template>

<script setup lang='ts'>
import { Sketch, type ColorInput } from 'vue-sketch';
import { ref } from 'vue';
const color = ref<ColorInput>('#ffffff');
const log = () => {
  console.log(color.value);
};
</script>
0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago