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.
19 lines
424 B
19 lines
424 B
<template>
|
|
<View long>
|
|
<CarouselWithIntro :data="park" />
|
|
</View>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { getParkingList } from '@/http/api'
|
|
import View from '@/layouts/View.vue'
|
|
import CarouselWithIntro from '@/components/CarouselWithIntro/CarouselWithIntro.vue'
|
|
|
|
const park = ref({})
|
|
getParkingList().then(({ data }) => {
|
|
park.value = data
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|
|
|