<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>v-text,v-html指令</title>
<script src="node_modules/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<button v-bind:title="msg1">这是一个按钮</button>
<button onclick="alert('点一下玩一年,装备不花一分钱')">装备</button>
<button @click="show">装备</button>

</div>
<script>
var vm=new Vue({
el : '#app',
data:{
msg1:'我是个按钮哈哈',
},methods:{
show(){
alert("点一下玩一年,装备不花一分钱,哈哈");
}
}
})
</script>
</body>
</html>



所需依赖:npm i vue