LeftGrass.vue 266B

123456789101112131415161718
  1. <template>
  2. <div class="left-grass-box">
  3. </div>
  4. </template>
  5. <script setup>
  6. import grassImage from '@/assets/GrassImage/left-grass.png'
  7. </script>
  8. <style lang="less" scoped>
  9. .left-grass-box {
  10. position: absolute;
  11. left: 0;
  12. bottom: 0;
  13. z-index: 0;
  14. }
  15. </style>