15.02 Add a Show 12 hour time format Setting
This commit is contained in:
parent
4154082af3
commit
db595d0276
@ -1,11 +1,30 @@
|
|||||||
<template>
|
<template>
|
||||||
<q-page padding>
|
<q-page padding>
|
||||||
<p>Settings Page</p>
|
<q-list bordered padding>
|
||||||
|
<q-item-label header>Settings</q-item-label>
|
||||||
|
|
||||||
|
<q-item tag="label" v-ripple>
|
||||||
|
<q-item-section>
|
||||||
|
<q-item-label>Show 12 hour time format</q-item-label>
|
||||||
|
</q-item-section>
|
||||||
|
<q-item-section side >
|
||||||
|
<q-toggle
|
||||||
|
color="blue"
|
||||||
|
v-model="show12HourTimeFormat"
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
</q-list>
|
||||||
</q-page>
|
</q-page>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'PageSettings'
|
name: 'PageSettings',
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
show12HourTimeFormat: false
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user