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