Skip to content

Commit 3b5cc40

Browse files
committed
chore: lint
1 parent 9be7883 commit 3b5cc40

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

demo-snippets/vue/TextView.vue

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,19 @@
2727
</FormattedString>
2828
</MDTextView>
2929
<MDTextView id="textView2" editable="false" counterMaxLength="10" maxLength="10" hint="hint me" @textChange="onTextChange" @returnPress="onReturnPress" />
30-
<MDTextView id="textView3" placeholderColor="green" floatingColor="yellow" color="red" variant="outline" hint="text should be red" @textChange="onTextChange" v-model="value" @returnPress="onReturnPress" height="200" backgroundColor="blue"/>
30+
<MDTextView
31+
id="textView3"
32+
placeholderColor="green"
33+
floatingColor="yellow"
34+
color="red"
35+
variant="outline"
36+
hint="text should be red"
37+
helper="test"
38+
@textChange="onTextChange"
39+
v-model="value"
40+
@returnPress="onReturnPress"
41+
backgroundColor="blue"
42+
/>
3143
<MDTextView variant="filled" required="true" email="true" hint="fill this out..." @textChange="onTextChange" @returnPress="onReturnPress" />
3244
<MDTextView hint="fill this out..." />
3345
</StackLayout>
@@ -46,7 +58,7 @@ export default Vue.extend({
4658
4759
data() {
4860
return {
49-
title: title,
61+
title,
5062
value: 'test'
5163
};
5264
},

0 commit comments

Comments
 (0)