| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="info-track">
- </div>
- </template>
- <script>
- export default {
- name: "info-track",
- props:{id: String}
- };
- </script>
- <style lang="less" scoped>
- .info-track{
- display: flex;
- flex-direction: column;
-
- .track-map{
- flex-direction: row;
- justify-content: flex-end;
- }
- .track-line{
- }
- }
- </style>
|