-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20_cell.html
39 lines (34 loc) · 1.06 KB
/
20_cell.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<link rel="stylesheet" href="style.css">
<style>
* {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="app1">
<mt-cell title="标题文字"></mt-cell>
<mt-cell title="标题文字" value="说明文字"></mt-cell>
<mt-cell title="标题文字" to="//github.com" is-link value="带链接"></mt-cell>
<mt-cell title="标题文字" icon="more" value="带 icon"></mt-cell>
<mt-cell title="标题文字"><span>icon 是图片</span><img slot="icon" src="assets/100x100.png" width="24" height="24"></mt-cell>
<mt-cell title="标题文字" is-link><span style="color: green">这里是元素</span></mt-cell>
<mt-cell title="标题" label="描述信息" is-link></mt-cell>
</div>
</body>
<!-- 先引入 Vue -->
<script src="vue.js"></script>
<!-- 引入组件库 -->
<script src="mint-ui/lib/index.js"></script>
<script>
new Vue({
el: '#app1',
})
</script>
</html>