badl/frontend/src/App.vue

46 lines
978 B
Vue
Raw Normal View History

2023-02-22 11:13:06 +08:00
<script setup>
import "bootstrap/dist/css/bootstrap.css";
2023-02-22 16:24:08 +08:00
import "bootstrap-icons/font/bootstrap-icons.css";
2023-02-22 11:13:06 +08:00
import AudioCard from "./components/AudioCard.vue";
2023-02-22 16:24:08 +08:00
const p1 = {
number: "BV1es41127Fd",
received: 0,
total: 0,
};
const p2 = {
number: "BV1es41127Fd",
title: "【洛天依/乐正绫原创】霜雪千年【PV付/COP】",
received: 0,
total: 0,
};
const p3 = {
number: "BV1es41127Fd",
title: "【洛天依/乐正绫原创】霜雪千年【PV付/COP】",
received: 1314514,
total: 1919810,
};
const p4 = {
number: "BV1es41127Fd",
title: "【洛天依/乐正绫原创】霜雪千年【PV付/COP】",
received: 1919810,
total: 1919810,
};
2023-02-22 11:13:06 +08:00
</script>
<template>
<div id="wrapper">
2023-02-22 16:24:08 +08:00
<AudioCard v-bind="p1"></AudioCard>
<AudioCard v-bind="p2"></AudioCard>
<AudioCard v-bind="p3"></AudioCard>
<AudioCard v-bind="p4"></AudioCard>
2023-02-22 11:13:06 +08:00
</div>
</template>
<style scoped>
#wrapper {
margin-top: 20px;
margin-left: 20px;
}
</style>