mirror of
https://gitee.com/krxd/shuyuan.git
synced 2026-04-08 13:25:54 +08:00
14 lines
437 B
Vue
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>
|