-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyi.vue
45 lines (40 loc) · 1.32 KB
/
yi.vue
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
44
45
<template>
<div>
<group title="Basic">
<switch title="Camera" :value="true"></switch>
<cell title="Camera Name" value="小蚁智能摄像机"></cell>
<cell title="Settings" inline-desc="Status light, image rotation, newwork info, firmware etc." is-link></cell>
</group>
<group title="Security">
<switch title="PIN Protection" inline-desc="Require PIN to access camera" :value="false"></switch>
</group>
<group title="Alerts">
<switch title="Activity Alerts" inline-desc="Send alerts when activity is detected" :value="true"></switch>
<cell title="Settings" inline-desc="Video alerts, frequency, more" is-link></cell>
<cell title="Schedule" value="11:00-22:00"></cell>
</group>
<group title="Storage">
<switch title="Activity Detection Recording" inline-desc="Videos will only be saved when activity is detected" :value="false"></switch>
<cell title="Storage" value="In good condition"></cell>
</group>
</div>
</template>
<script>
import { DevTip, Number, Selector, Group, GroupTitle, Button as Btn, Tip, Switch, Radio, Checklist, Cell, Xinput } from './components-vux'
export default {
components: {
Number,
Selector,
Group,
Btn,
Tip,
Switch,
GroupTitle,
Radio,
DevTip,
Checklist,
Cell,
Xinput
}
}
</script>