You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
815 B
40 lines
815 B
<!doctype html>
|
|
<html lang="zh" gv-id="index">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="keywords" content="">
|
|
<link rel="stylesheet" href="css/main.css">
|
|
<script src="js/vue.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app" class="content">
|
|
<my-title></my-title>
|
|
|
|
<a>{{desc}}</a>
|
|
</div>
|
|
<div id="quick_start" class="content">
|
|
<h3>{{title}}</h3>
|
|
<a v-on:click="click" class="gv-ignore">查看</a>
|
|
</div>
|
|
<div id="pre" class="content">
|
|
<pre>{{pre}}</pre>
|
|
</div>
|
|
</body>
|
|
<script src="index.js" gv-src></script>
|
|
<script gv-src gv-common>
|
|
new Vue({
|
|
el: "#quick_start",
|
|
data: {
|
|
title: "快速开始"
|
|
},
|
|
methods: {
|
|
click: function () {
|
|
alert("点击触发");
|
|
}
|
|
}
|
|
});
|
|
|
|
</script>
|
|
|
|
</html>
|