You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
315 B
10 lines
315 B
|
6 days ago
|
|
||
|
|
<template>
|
||
|
|
<zheng-bian :stationType="stationType" :fixed="fixed" :requestPrefix="requestPrefix"></zheng-bian>
|
||
|
|
</template>
|
||
|
|
<script setup>
|
||
|
|
import ZhengBian from '@/components/ZhengBian/index.vue'
|
||
|
|
const stationType = ref('D')
|
||
|
|
const fixed = ref(2)
|
||
|
|
const requestPrefix = ref('/yctidedata')
|
||
|
|
</script>
|