xn.vue 373 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <el-scrollbar :height="height">
  3. 风机2
  4. </el-scrollbar>
  5. </template>
  6. <script>
  7. export default {
  8. components: {
  9. },
  10. data() {
  11. return {
  12. };
  13. },
  14. props:{
  15. currTab:{
  16. type: Number
  17. },
  18. height: {
  19. type: String
  20. },
  21. },
  22. methods:{
  23. },
  24. created() {
  25. },
  26. mounted() {},
  27. };
  28. </script>
  29. <style lang="less" scoped>
  30. </style>