iview/examples/routers/color-picker.vue
2018-10-30 16:23:09 +08:00

13 lines
240 B
Vue

<template>
<ColorPicker v-model="color1" transfer />
</template>
<script>
export default {
data () {
return {
color1: '#19be6b',
color2: ''
}
}
}
</script>