-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 971 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!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">
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link rel="stylesheet" href="main.css">
<title>Document</title>
</head>
<body>
<div id="player">
<p id="inp">
<input type="text" v-model="message" id="input_id" placeholder="输入歌曲ID">
<button @click="sub" id="subm">查询</button>
</p>
<div id="name">{{ album }}</div>
<p><img :src="cover" id="image" v-if="get_music"></p>
<audio controls="controls" :src="link" v-if="get_music" id="music_play">
</audio>
<!--<p>{{ cover }}</p>-->
<!--<p>{{ link }}</p>-->
</div>
<script src="main.js"></script>
</body>
</html>