mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-12 10:52:48 +00:00
13 lines
391 B
Vue
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> |