downloadApp.vue
661 Bytes
<template>
<!-- 下载App -->
<div class="downloadApp">
<!-- app背景图 -->
<a class="AppBackground" href="https://btqubao.oss-cn-beijing.aliyuncs.com/apk/__UNI__B5AC1D2__20220808175902.apk"></a>
</div>
</template>
<script>
export default {
name: "DownloadApp",
};
</script>
<style lang="scss" scoped>
// 下载App
.downloadApp {
width: 100vw;
height: 100vh;
background: url("../image/backgroundApp.png") 0 0 / 100% no-repeat;
// app背景图
.AppBackground {
width: 100vw;
height: 100vh;
display: block;
background: url("../image/backgroundApp.png") 0 0 / 100% no-repeat;
}
}
</style>