mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
76a6e48116
Co-authored-by: “Alanscut” <“wp_scut@163.com”>
37 lines
707 B
Vue
37 lines
707 B
Vue
<template>
|
|
<div class="demo-color-block">
|
|
<span class="demonstration">With default value</span>
|
|
<el-color-picker v-model="color1" />
|
|
</div>
|
|
<div class="demo-color-block">
|
|
<span class="demonstration">With no default value</span>
|
|
<el-color-picker v-model="color2" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, ref } from 'vue'
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
const color1 = ref('#409EFF')
|
|
const color2 = ref(null)
|
|
return {
|
|
color1,
|
|
color2,
|
|
}
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.demo-color-block {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
.demonstration {
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
</style>
|