iview/examples/routers/color-picker.vue
2018-08-24 16:39:51 +08:00

17 lines
360 B
Vue

<template>
<div style="margin: 100px;">
{{ color1 }}
<ColorPicker v-model="color1" />
<ColorPicker v-model="color2" :editable="false"/>
</div>
</template>
<script>
export default {
data () {
return {
color1: '#19be6b',
color2: ''
};
}
};
</script>