iview/examples/routers/color-picker.vue

14 lines
240 B
Vue
Raw Permalink Normal View History

2017-08-15 16:39:07 +08:00
<template>
2018-10-30 16:23:09 +08:00
<ColorPicker v-model="color1" transfer />
2017-08-15 16:39:07 +08:00
</template>
<script>
2018-08-24 16:39:51 +08:00
export default {
data () {
return {
color1: '#19be6b',
color2: ''
2018-10-30 16:23:09 +08:00
}
2018-08-24 16:39:51 +08:00
}
2018-10-30 16:23:09 +08:00
}
2018-05-03 10:42:26 +02:00
</script>