mirror of https://github.com/requarks/wiki
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.
16 lines
251 B
16 lines
251 B
8 years ago
|
<template lang="pug">
|
||
|
p.control
|
||
|
input.input(type='text', placeholder='#F0F0F0', v-model='color')
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'color-picker',
|
||
|
data () {
|
||
|
return {
|
||
|
color: '000000'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|