You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
251 B

  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>