-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.12 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, miximum=1.0, user-scalable=no" />
<meta name="format-detection" content="telephone=no, email=no" />
<meta http-equiv="pragra" content="no-cache">
<meta name="screen-orientation" content="portrait">
<meta name="flexible" content="initial-dpr=1, maximum-dpr=1" />
<meta name="x5-orientation" content="portrait">
<meta name="author" content="邓文斌,dengwb1991,13720017500">
<title>Vue Tab Bar</title>
<style type="text/css">
body {
margin: 0;
}
</style>
</head>
<body>
<div id="app">
<button @click="tap">添加数据</button>
<dwb-vue-tab :data="tabs"
:active.sync="active"
:init-callback="initCallback"
@callback="getData"/>
</div>
</body>
</html>