init ColorPicker
This commit is contained in:
parent
ad22557812
commit
c6faec44a8
8 changed files with 40 additions and 1 deletions
13
src/components/color-picker/color-picker.vue
Normal file
13
src/components/color-picker/color-picker.vue
Normal file
|
@ -0,0 +1,13 @@
|
|||
<template>
|
||||
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {},
|
||||
data () {
|
||||
return {};
|
||||
},
|
||||
computed: {},
|
||||
methods: {}
|
||||
};
|
||||
</script>
|
0
src/components/color-picker/color.js
Normal file
0
src/components/color-picker/color.js
Normal file
2
src/components/color-picker/index.js
Normal file
2
src/components/color-picker/index.js
Normal file
|
@ -0,0 +1,2 @@
|
|||
import ColorPicker from './color-picker.vue';
|
||||
export default ColorPicker;
|
5
src/styles/components/color-picker.less
Normal file
5
src/styles/components/color-picker.less
Normal file
|
@ -0,0 +1,5 @@
|
|||
@color-picker-prefix-cls: ~"@{css-prefix}color-picker";
|
||||
|
||||
.@{color-picker-prefix-cls} {
|
||||
|
||||
}
|
|
@ -39,4 +39,5 @@
|
|||
@import "rate";
|
||||
@import "upload";
|
||||
@import "tree";
|
||||
@import "avatar";
|
||||
@import "avatar";
|
||||
@import "color-picker";
|
Loading…
Add table
Add a link
Reference in a new issue