-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
36 lines (36 loc) · 1.11 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
32
33
34
35
36
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1, user-scalable=0">
<title>JTaro 醉芋头</title>
<link rel="stylesheet" href="./demos/main.css">
<!--<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/jroll/src/jroll.js"></script>-->
<script src="./node_modules/vue/dist/vue.js"></script>
<script src="./node_modules/jroll/src/jroll.js"></script>
</head>
<body>
<div id="jtaro_app"></div>
<!--<script src="./dist/jtaro.js"></script>-->
<script src="./src/jtaro.js"></script>
<script src="./demos/main.js"></script>
<script>
Vue.use(JTaro, {
vueOptions: {
el: '#app',
data: {
views: 123,
haha: 123123
},
render: function (h) {
return h('div', '123')
},
mounted: function () {
console.log('Vue Options Created!!!')
}
}
})
</script>
</body>
</html>