mirror of
https://gitee.com/niucloud-team/javashop.git
synced 2026-05-25 10:13:52 +00:00
16 lines
476 B
Smarty
16 lines
476 B
Smarty
<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>
|
|
{{ component }}
|
|
</view>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
{{ componentImport }}
|
|
const props = defineProps(['data','pullDownRefreshCount']);
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@import './index.scss';
|
|
</style>
|