|
|
@@ -1,31 +1,31 @@
|
|
1
|
1
|
<template lang="pug">
|
|
2
|
|
-w-app
|
|
3
|
|
- w-drawer(v-model="openDrawer")
|
|
4
|
|
- w-flex.my12(:gap="3" align-center wrap)
|
|
5
|
|
- w-button.ma1(@click="$waveui.notify('Information.')" bg-color="info") Notify info
|
|
6
|
|
- w-button.ma1(@click="$waveui.notify('Success!', 'success')" bg-color="success") Notify success
|
|
7
|
|
- w-button.ma1(@click="$waveui.notify('Warning!', 'warning')" bg-color="warning") Notify warning
|
|
8
|
|
- w-button.ma1(@click="$waveui.notify('Error :(', 'error', 0)" bg-color="error") Permanent error
|
|
9
|
|
- w-flex.my12(align-center wrap)
|
|
10
|
|
- w-spinner(bounce)
|
|
11
|
|
- w-input Label
|
|
12
|
|
- w-checkbox Single option
|
|
13
|
|
- w-flex.my12
|
|
14
|
|
- w-button(@click="openDrawer = true" outline="")
|
|
15
|
|
- | Open drawer
|
|
16
|
|
- w-flex.my12(grow column)
|
|
17
|
|
- w-slider(:model-value="40" thumb-label step-label :step="20" color="primary-light3").mt12
|
|
18
|
|
- .mt4 v-model:
|
|
19
|
|
- code.ml1 {{ sliderVal }}
|
|
20
|
|
- w-flex.my12(:gap="3" align-center wrap)
|
|
21
|
|
- | Show menu on:
|
|
22
|
|
- w-menu
|
|
23
|
|
- template(#activator="{ on }")
|
|
24
|
|
- w-button(v-on="on") Show menu
|
|
25
|
|
- | Menu content
|
|
26
|
|
- w-badge.mr10(bg-color="error")
|
|
27
|
|
- template(#badge) 3
|
|
28
|
|
- w-icon(color="grey-light1" size="2.5em") mdi mdi-email
|
|
|
2
|
+w-app(style="display:flex; flex-direction:row-reverse; gap: 40px; justify-content: flex-end;")
|
|
|
3
|
+ //- w-drawer(v-model="openDrawer")
|
|
|
4
|
+ //- w-flex.my12(:gap="3" align-center wrap)
|
|
|
5
|
+ //- w-button.ma1(@click="$waveui.notify('Information.')" bg-color="info") Notify info
|
|
|
6
|
+ //- w-button.ma1(@click="$waveui.notify('Success!', 'success')" bg-color="success") Notify success
|
|
|
7
|
+ //- w-button.ma1(@click="$waveui.notify('Warning!', 'warning')" bg-color="warning") Notify warning
|
|
|
8
|
+ //- w-button.ma1(@click="$waveui.notify('Error :(', 'error', 0)" bg-color="error") Permanent error
|
|
|
9
|
+ //- w-flex.my12(align-center wrap)
|
|
|
10
|
+ //- w-spinner(bounce)
|
|
|
11
|
+ //- w-input Label
|
|
|
12
|
+ //- w-checkbox Single option
|
|
|
13
|
+ //- w-flex.my12
|
|
|
14
|
+ //- w-button(@click="openDrawer = true" outline="")
|
|
|
15
|
+ //- | Open drawer
|
|
|
16
|
+ //- w-flex.my12(grow column)
|
|
|
17
|
+ //- w-slider(:model-value="40" thumb-label step-label :step="20" color="primary-light3").mt12
|
|
|
18
|
+ //- .mt4 v-model:
|
|
|
19
|
+ //- code.ml1 {{ sliderVal }}
|
|
|
20
|
+ //- w-flex.my12(:gap="3" align-center wrap)
|
|
|
21
|
+ //- | Show menu on:
|
|
|
22
|
+ //- w-menu
|
|
|
23
|
+ //- template(#activator="{ on }")
|
|
|
24
|
+ //- w-button(v-on="on") Show menu
|
|
|
25
|
+ //- | Menu content
|
|
|
26
|
+ //- w-badge.mr10(bg-color="error")
|
|
|
27
|
+ //- template(#badge) 3
|
|
|
28
|
+ //- w-icon(color="grey-light1" size="2.5em") mdi mdi-email
|
|
29
|
29
|
SideBar(
|
|
30
|
30
|
v-if="showSidebar"
|
|
31
|
31
|
:pid="getPid"
|