12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <el-scrollbar :height="height">
- 风机2
- </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>
|