TIP
1.0.10+
<avue-form :option="option" v-model="form" > </avue-form> <script> export default{ data() { return { form: { color:'rgba(42, 20, 20, 1)', }, option: { column: [ { label: '颜色选择器', prop: 'color', type: 'color', } ] } } } } </script>
<avue-form :option="option" v-model="form" > </avue-form> <script> export default{ data() { return { form: { color:'#3E1414', }, option: { column: [ { label: '颜色选择器', prop: 'color', type: 'color', colorFormat:"hex", showAlpha:false } ] } } } } </script>
← 坐标选择器 搜索框 →