intro.vue 414 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="intro-box">
  3. <view>
  4. <image src="@/static/img/index/bg1.png" mode="widthFix"></image>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. name: "intro",
  11. components: {},
  12. props: {},
  13. data() {
  14. return {}
  15. },
  16. watch: {},
  17. mounted() {
  18. },
  19. methods: {}
  20. }
  21. </script>
  22. <style scoped lang="scss">
  23. .intro-box{
  24. width: 100%;
  25. image{
  26. width: 100vw;
  27. }
  28. }
  29. </style>