comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
21 lines (20 loc) • 446 B
JavaScript
import "../../../utils/config.mjs";
import "vue";
import { isString } from "../../../utils/typescript.mjs";
import "@vueuse/core";
const colorPickerProps = {
modelValue: String,
alpha: Boolean,
format: String,
size: String,
disabled: Boolean,
predefine: Array
};
const colorPickerEmits = {
["update:modelValue"]: (value) => isString(value),
change: (value) => isString(value)
};
export {
colorPickerEmits,
colorPickerProps
};