forked from vueComponent/ant-design-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
140 lines (139 loc) · 3.53 KB
/
App.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<template>
<a-config-provider :locale="locale">
<div>
<a-radio-group :value="locale" @change="changeLocale">
<a-radio-button key="en" :value="enUS">
English
</a-radio-button>
<a-radio-button key="cn" :value="zhCN">
中文
</a-radio-button>
</a-radio-group>
<div>
<h4>v-model: <input v-model="color" type="text" /></h4>
<a-color-picker v-model="color" style="width:130px" @show="changeHandler" />
</div>
<div>
<h4>v-model:{{ color }}</h4>
<a-color-picker v-model="color" style="width:130px" @show="changeHandler" />
</div>
<div>
<h4>备选颜色</h4>
<a-color-picker :config="config1" />
</div>
<div>
<h4>多种输入格式</h4>
<a-color-picker :config="config2" :get-popup-container="node => node.parentNode" />
</div>
<div>
<button @click="config2.components.preview = !config2.components.preview">
修改config
</button>
</div>
<div>
<h4>多种尺寸</h4>
<a-color-picker size="large" />
</div>
<div><a-color-picker size="small" /></div>
<div>
<h4>切换禁用</h4>
<a-color-picker :disabled="disabled" />
</div>
<div>
<button @click="disabled = !disabled">
切换
</button>
</div>
<div>
<h4>切换格式 [color:{{ color2 }}]</h4>
<a-color-picker v-model="color2" :locale="zhCN" :format="format" />
</div>
<div>
<button @click="format = 'HEX'">
HEX
</button>
<button @click="format = 'RGBA'">
RGBA
</button>
<button @click="format = 'HSVA'">
HSVA
</button>
<button @click="format = 'HSLA'">
HSLA
</button>
<button @click="format = 'CMYK'">
CMYK
</button>
</div>
</div>
</a-config-provider>
</template>
<script>
import enUS from 'ant-design-vue/../components/locale/en_US';
import zhCN from 'ant-design-vue/../components/locale/zh_CN';
export default {
name: 'Demo',
data() {
return {
color: '#ccc',
color2: '#ccc',
disabled: false,
format: '',
locale: enUS,
enUS,
zhCN,
config1: {
swatches: [
'rgba(244, 67, 54, 1)',
'rgba(233, 30, 99, 0.95)',
'rgba(156, 39, 176, 0.9)',
'rgba(103, 58, 183, 0.85)',
'rgba(63, 81, 181, 0.8)',
'rgba(33, 150, 243, 0.75)',
'rgba(3, 169, 244, 0.7)',
'rgba(0, 188, 212, 0.7)',
'rgba(0, 150, 136, 0.75)',
'rgba(76, 175, 80, 0.8)',
'rgba(139, 195, 74, 0.85)',
'rgba(205, 220, 57, 0.9)',
'rgba(255, 235, 59, 0.95)',
'rgba(255, 193, 7, 1)',
],
},
config2: {
components: {
// Main components
preview: true,
opacity: true,
hue: true,
interaction: {
hex: true,
rgba: true,
hsla: true,
hsva: true,
cmyk: true,
input: true,
clear: true,
save: true,
},
strings: {
save: 'Save',
clear: 'Clear',
cancel: 'Cancel',
},
},
},
};
},
methods: {
changeHandler(...arg) {
arg;
// console.log(arg);
},
changeLocale(e) {
const localeValue = e.target.value;
this.locale = localeValue;
},
},
};
</script>