mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-12 10:52:48 +00:00
14 lines
350 B
Vue
14 lines
350 B
Vue
<template>
|
||
<view>
|
||
固定模板示例,我也可以装修
|
||
<!-- 自定义模板渲染 -->
|
||
<diy-group :data="props.data" :pullDownRefresh="props.pullDownRefresh"></diy-group>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { computed, watch } from 'vue';
|
||
const props = defineProps(['data', 'pullDownRefresh']);
|
||
</script>
|
||
|
||
<style></style> |