huang
4 天以前 9dcde5b27b70a4b0c0885347af5405eb2d1ef089
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script lang="ts" setup>
import BaseUploadLine from './basicCaching.vue'
 
const props = {
  lineNumber: 2,
  webSocketPath: 'horizontalTask',
}
</script>
<template>
  <BaseUploadLine 
    :lineNumber="props.lineNumber"
    :webSocketPath="props.webSocketPath"
  />
</template>