StationData.vue 452 Bytes
<template>
  <div class="station-data">
    <h3>站台数据</h3>
    <!-- 在这里添加站台数据的逻辑和样式 -->
  </div>
</template>

<script>
export default {
  name: "StationData",
  data() {
    return {};
  },
  methods: {},
};
</script>

<style lang="scss" scoped>
.station-data {
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
  }
}
</style>