CameraContent-1-1-2.vue 929 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <div class="camera-content-1-1">
  3. <button
  4. class="return"
  5. @click="emit('close')"
  6. />
  7. </div>
  8. </template>
  9. <script setup>
  10. import { ref, computed, watch, onMounted } from "vue"
  11. import { useRoute, useRouter } from "vue-router"
  12. import { useStore } from "vuex"
  13. const route = useRoute()
  14. const router = useRouter()
  15. const store = useStore()
  16. const emit = defineEmits(['close'])
  17. </script>
  18. <style lang="less" scoped>
  19. .camera-content-1-1{
  20. position: absolute;
  21. left: 0;
  22. top: 0;
  23. width: 100%;
  24. height: 100%;
  25. background: rgba(0,0,0,0.45);
  26. backdrop-filter: blur(60px);
  27. >button.return{
  28. position: absolute;
  29. width: 58px;
  30. height: 58px;
  31. left: 42px;
  32. top: 68px;
  33. background-image: url(@/assets/images/btn-return.png);
  34. background-size: contain;
  35. background-repeat: no-repeat;
  36. background-position: center center;
  37. }
  38. }
  39. </style>