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.
23 lines
492 B
23 lines
492 B
<script setup>
|
|
import navv from "@/components/nav/nav.vue";
|
|
import topTitle from "@/components/topTitle/topTitle.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<navv>
|
|
<template #default="{ fixStyle, padStyle }">
|
|
<topTitle title="菜品详情" :style="fixStyle" />
|
|
<view :style="padStyle">
|
|
<view
|
|
v-for="(item, index) in 1000" :key="index"
|
|
>
|
|
{{ item }}
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</navv>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|