iview/examples/routers/color-picker.vue

14 lines
240 B
Vue
Raw Normal View History

2019-08-27 09:42:40 +08:00
<template>
<ColorPicker v-model="color1" transfer />
</template>
<script>
export default {
data () {
return {
color1: '#19be6b',
color2: ''
}
}
}
</script>