Files
shuyuanuinapp/src/addon/components/fixed/group/index.vue
郑彪辉 ada40c1638 创建
2025-04-16 21:34:05 +08:00

14 lines
437 B
Vue

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