@ -1,7 +1,9 @@
<template>
<TopNav />
<QRCode />
<router-view />
</template>
<script setup>
import TopNav from 'cpns/TopNav'
import QRCode from 'cpns/QRCode'
</script>
After
Width: 185 | Height: 392 | Size: 37 KiB
@ -0,0 +1,18 @@
<div class="qr_code_container"></div>
<script setup></script>
<style lang="scss" scoped>
.qr_code_container {
position: fixed;
right: 80px;
bottom: 60px;
width: 185px;
height: 392px;
background: url(../../assets/img/contact.png) no-repeat;
background-size: 100% 100%;
z-index: 999;
}
</style>