2024-03-22 17:09:49 +08:00

36 lines
876 B
HTML

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=<device-width>, initial-scale=1.0">
<title>Document</title>
<script src="vue.js"></script>
</head>
<body>
<button onclick="msg()">按钮</button>
<button onclick="aardio.showmsg('hello world')">按钮2</button>
<button onclick="aardio.test()">按钮3</button>
<div id="app">
<!-- 差值语法 -->
{{ message.toUpperCase() }}
<br><input type="text" :value="message">
</div>
<div id="app">
<input type="text" :value="message">
</div>
</body>
<script>
msg = function () {
// alert('hello world');
aardio.showmsg('hello world');
}
</script>
<script>
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!!!'
}
})
</script>
</html>