mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
16 lines
251 B
Vue
16 lines
251 B
Vue
<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>
|