forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDesignOverview.vue
More file actions
39 lines (27 loc) · 1.01 KB
/
DesignOverview.vue
File metadata and controls
39 lines (27 loc) · 1.01 KB
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>
<div class="q-pa-md">
<div class="q-gutter-md" style="max-width: 300px">
<q-input v-model="text" label="Standard" />
<q-input filled v-model="text" label="Filled" />
<q-input outlined v-model="text" label="Outlined" />
<q-input standout v-model="text" label="Standout" />
<q-input standout="bg-teal text-white" v-model="text" label="Custom standout" />
<q-input borderless v-model="text" label="Borderless" />
<q-input rounded filled v-model="text" label="Rounded filled" />
<q-input rounded outlined v-model="text" label="Rounded outlined" />
<q-input rounded standout v-model="text" label="Rounded standout" />
<q-input square filled v-model="text" label="Square filled" />
<q-input square outlined v-model="text" label="Square outlined" />
<q-input square standout v-model="text" label="Square standout" />
</div>
</div>
</template>
<script>
export default {
data () {
return {
text: ''
}
}
}
</script>