index.vue 345 B

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