color-picker.vue 251 B

123456789101112131415
  1. <template lang="pug">
  2. p.control
  3. input.input(type='text', placeholder='#F0F0F0', v-model='color')
  4. </template>
  5. <script>
  6. export default {
  7. name: 'color-picker',
  8. data () {
  9. return {
  10. color: '000000'
  11. }
  12. }
  13. }
  14. </script>