全栈小学生 36967076d4 update code
2023-09-06 14:52:30 +08:00

13 lines
391 B
Vue

<template>
<view class="fixed-group">
<template v-if="props.data.global.component == 'demo-index'">
<fixed-demo-index :data="props.data" :pullDownRefresh="props.pullDownRefresh"></fixed-demo-index>
</template>
</view>
</template>
<script lang="ts" setup>
const props = defineProps(['data', 'pullDownRefresh']);
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>