iview/examples/routers/color-picker.vue

14 lines
240 B
Vue
Raw Normal View History

2020-02-03 16:58:48 +08:00
<template>
<ColorPicker v-model="color1" transfer />
</template>
<script>
export default {
data () {
return {
color1: '#19be6b',
color2: ''
}
}
}
</script>