DemoTextareaIcons.vue
793 Bytes
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
<template>
<VRow>
<VCol cols="12">
<VTextarea
label="prepend-icon"
rows="1"
placeholder="Placeholder Text"
prepend-icon="ri-chat-2-line"
/>
</VCol>
<VCol cols="12">
<VTextarea
append-icon="ri-chat-2-line"
placeholder="Placeholder Text"
label="append-icon"
rows="1"
/>
</VCol>
<VCol cols="12">
<VTextarea
prepend-inner-icon="ri-chat-2-line"
label="prepend-inner-icon"
placeholder="Placeholder Text"
rows="1"
/>
</VCol>
<VCol cols="12">
<VTextarea
append-inner-icon="ri-chat-2-line"
label="append-inner-icon"
placeholder="Placeholder Text"
rows="1"
/>
</VCol>
</VRow>
</template>