mirror of
https://github.com/janishutz/MusicPlayerV2.git
synced 2025-11-25 04:54:23 +00:00
26 lines
1.0 KiB
HTML
26 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=7">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Showcase - MusicPlayerV2</title>
|
|
<link rel="stylesheet" href="/showcase.css">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
|
|
</head>
|
|
<body>
|
|
<div class="content" id="app">
|
|
<div class="wrapper" v-if="hasLoaded">
|
|
<h1>Ok</h1>
|
|
<!-- <img :src="" alt=""> -->
|
|
</div>
|
|
<div v-else>
|
|
<h1>Loading...</h1>
|
|
</div>
|
|
</div>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
|
|
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
|
|
<script src="/showcase.js"></script>
|
|
</body>
|
|
</html> |