32 lines
747 B
HTML
32 lines
747 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>vue</title>
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
<h2>{{ message }}</h2>
|
|
<a :href="aParams.href">{{ aParams.title }}</a>
|
|
</div>
|
|
</body>
|
|
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.14/dist/vue.js"></script>
|
|
<script>
|
|
new Vue({
|
|
el:'.app',
|
|
data:{
|
|
message:'hhhh',
|
|
vip: 0,
|
|
isVip:false,
|
|
userName:'',
|
|
aParams: {
|
|
title:'点击',
|
|
href:'https://www.baidu.com/'
|
|
}
|
|
}
|
|
})
|
|
|
|
</script>
|
|
</html> |