init ColorPicker

This commit is contained in:
梁灏 2017-08-15 16:39:07 +08:00
parent ad22557812
commit c6faec44a8
8 changed files with 40 additions and 1 deletions

View file

@ -0,0 +1,13 @@
<template>
</template>
<script>
export default {
props: {},
data () {
return {};
},
computed: {},
methods: {}
};
</script>

View file

View file

@ -0,0 +1,2 @@
import ColorPicker from './color-picker.vue';
export default ColorPicker;

View file

@ -0,0 +1,5 @@
@color-picker-prefix-cls: ~"@{css-prefix}color-picker";
.@{color-picker-prefix-cls} {
}

View file

@ -39,4 +39,5 @@
@import "rate";
@import "upload";
@import "tree";
@import "avatar";
@import "avatar";
@import "color-picker";