introduce.vue 531 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view class="container">
  3. <view class="footer">
  4. <view class="view1">666</view>
  5. <view class="view2">2333</view>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. }
  14. }
  15. }
  16. </script>
  17. <style lang="scss">
  18. .container{
  19. width: 100%;
  20. height: 100%;
  21. }
  22. .footer{
  23. width: 100%;
  24. height: 90px;
  25. display: flex;
  26. position: fixed;
  27. bottom: 0;
  28. left: 0;
  29. .view1{
  30. width: 30%;
  31. background-color: red;
  32. }
  33. .view2{
  34. width: 70%;
  35. background-color: blue;
  36. }
  37. }
  38. </style>