-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 1.02 KB
/
Copy pathindex.html
File metadata and controls
44 lines (40 loc) · 1.02 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
44
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Fuetify</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#app {
margin: 60px;
}
:root {
--button-height: 32px;
--font-size: 14px;
--button-bg: white;
--button-active-bg: #eee;
--border-radius: 4px;
--color: #333;
--border-color: #999;
--border-color-hover: #666;
font-size: 14px;
}
</style>
</head>
<body style="border: 2px solid red;">
<div id="app">
<f-collapse :selected.sync="selected" single>
<f-collapse-item title="title1" name="1">内容1</f-collapse-item>
<f-collapse-item title="title2" name="2">内容2</f-collapse-item>
<f-collapse-item title="title3" name="3">内容3</f-collapse-item>
</f-collapse>
</div>
<script src="./src/app.js"></script>
</body>
</html>