mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2026-03-26 15:42:59 +00:00
16 lines
432 B
Vue
16 lines
432 B
Vue
<template>
|
||
<view>
|
||
固定模板示例,我也可以装修
|
||
<!-- 自定义模板渲染 -->
|
||
<diy-group :data="props.data" :pullDownRefreshCount="props.pullDownRefreshCount"></diy-group>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { computed, watch } from 'vue';
|
||
import diyGroup from '@/addon/components/diy/group/index.vue'
|
||
const props = defineProps(['data', 'pullDownRefreshCount']);
|
||
</script>
|
||
|
||
<style></style>
|