1234567891011121314151617181920212223242526 |
- <template>
- <el-scrollbar :height="height"> </el-scrollbar>
- </template>
- <script>
- export default {
- components: {},
- data() {
- return {};
- },
- props: {
- currTab: {
- type: Number,
- },
- height: {
- type: String,
- },
- },
- methods: {},
- created() {},
- mounted() {},
- };
- </script>
- <style lang="less" scoped>
- </style>
|