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.
28 lines
566 B
28 lines
566 B
<script setup>
|
|
import navv from "@/components/nav/nav.vue";
|
|
import topTitle from "@/components/topTitle/topTitle.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<navv>
|
|
<template #default="{ style, content }">
|
|
<topTitle title="菜品详情" :style="style" />
|
|
<view
|
|
:style="{
|
|
height: `${content}px`,
|
|
overflowY: 'auto',
|
|
}"
|
|
>
|
|
<view
|
|
v-for="(item, index) in 1000" :key="index"
|
|
>
|
|
{{ item }}
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</navv>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|