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.
 
 

31 lines
597 B

<!doctype html>
<html lang="zh" govue-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">
<my-title></my-title>
<a v-on:click="click" class="gv-ignore">{{desc}}</a>
</div>
<pre id="pre">{{pre}}</pre>
</body>
<script src="index.js" govue-src></script>
<script>
new Vue({
el: "#app",
methods:{
click:function () {
alert("点击触发");
}
}
});
</script>
</html>