forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic.vue
More file actions
43 lines (40 loc) · 1.18 KB
/
Basic.vue
File metadata and controls
43 lines (40 loc) · 1.18 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
40
41
42
43
<template>
<div class="q-pa-md q-gutter-y-sm">
<q-toolbar class="text-primary">
<q-btn flat round dense icon="menu" />
<q-toolbar-title>
Toolbar
</q-toolbar-title>
<q-btn flat round dense icon="more_vert" />
</q-toolbar>
<q-toolbar class="bg-grey-3">
<q-btn flat round dense>
<q-icon name="menu" />
</q-btn>
<q-toolbar-title>
Toolbar
</q-toolbar-title>
<q-btn flat round dense>
<q-icon name="more_vert" />
</q-btn>
</q-toolbar>
<q-toolbar class="bg-purple text-white">
<q-btn flat round dense icon="assignment_ind" />
<q-toolbar-title>
Toolbar
</q-toolbar-title>
<q-btn flat round dense icon="apps" class="q-mr-xs" />
<q-btn flat round dense icon="more_vert" />
</q-toolbar>
<q-toolbar class="bg-black text-white">
<q-btn flat round dense icon="assignment_ind">
<q-badge floating color="red">2</q-badge>
</q-btn>
<q-toolbar-title>
Toolbar
</q-toolbar-title>
<q-btn flat round dense icon="sim_card" class="q-mr-xs" />
<q-btn flat round dense icon="gamepad" />
</q-toolbar>
</div>
</template>