This commit is contained in:
梁灏 2018-10-30 16:23:09 +08:00
parent 0f0e311eb2
commit ae02246a2e
4 changed files with 8 additions and 13 deletions

View file

@ -1,9 +1,5 @@
<template>
<div style="margin: 100px;">
{{ color1 }}
<ColorPicker v-model="color1" />
<ColorPicker v-model="color2" :editable="false"/>
</div>
<ColorPicker v-model="color1" transfer />
</template>
<script>
export default {
@ -11,7 +7,7 @@
return {
color1: '#19be6b',
color2: ''
};
}
}
};
}
</script>