downloadApp.vue
669 Bytes
<template>
<!-- 下载App -->
<div class="downloadApp">
<!-- app背景图 -->
<a class="AppBackground" href="https://shanmi-manghe.oss-cn-beijing.aliyuncs.com/b455dd92-723f-4e18-aad7-4da4506ccd2e.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>